summaryrefslogtreecommitdiff
path: root/bin/gbuild-to-ide
diff options
context:
space:
mode:
authorMichael Weghorn <m.weghorn@posteo.de>2023-10-30 15:30:18 +0100
committerMichael Weghorn <m.weghorn@posteo.de>2023-10-31 07:05:41 +0100
commit0779066f4788ec01daee6b452cde02b9139019aa (patch)
treeb541411c36c0232d2d7f42ba7a28155369b4d94e /bin/gbuild-to-ide
parent303899b811f8cf3dd72caacb0d9a4f59d245b02d (diff)
bin/gbuild-to-ide: Drop trailing whitespace
Change-Id: I3142080721db11f75631accd3a5e403027a63110 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158664 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'bin/gbuild-to-ide')
-rwxr-xr-xbin/gbuild-to-ide6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index ce72f4ae2e53..82ff9e6fc631 100755
--- a/bin/gbuild-to-ide
+++ b/bin/gbuild-to-ide
@@ -304,7 +304,7 @@ class EclipseCDTIntegrationGenerator(IdeIntegrationGenerator):
</language>
</section>
</cdtprojectproperties>
-"""
+"""
for module in self.gbuildparser.modulenamelist:
tempxml = []
@@ -329,7 +329,7 @@ class EclipseCDTIntegrationGenerator(IdeIntegrationGenerator):
macrokey = macroskeyvalue[0]
macrovalue = macroskeyvalue[1]
if macrovalue[-1:] == "\n":
- macrovalue = macrovalue[:-1]
+ macrovalue = macrovalue[:-1]
templine = "<macro><name>%s</name><value>%s</value></macro>\n" %(macrokey, macrovalue)
tempxml.insert(-13, templine)
tempxml="".join(tempxml)
@@ -344,7 +344,7 @@ class EclipseCDTIntegrationGenerator(IdeIntegrationGenerator):
def emit(self):
self.create_include_paths()
self.create_macros()
- self.create_settings_file()
+ self.create_settings_file()
class CodeliteIntegrationGenerator(IdeIntegrationGenerator):