Preferences omniidl.exe (CORBA support) and protoc.exe (Protobuf support) paths setting bug fix.

Tue, 02 Oct 2018 01:07:37 +0300

author
Christos Sevastiadis <csevast@auth.gr>
date
Tue, 02 Oct 2018 01:07:37 +0300
changeset 6527
402067bb8029
parent 6520
a920f2ca8f5f
child 6528
3e194fec0eaa

Preferences omniidl.exe (CORBA support) and protoc.exe (Protobuf support) paths setting bug fix.
Show External Tools dialog window title correction.

Preferences/ProgramsDialog.py file | annotate | diff | comparison | revisions
Preferences/ProgramsDialog.ui file | annotate | diff | comparison | revisions
--- a/Preferences/ProgramsDialog.py	Sun Sep 30 20:01:12 2018 +0300
+++ b/Preferences/ProgramsDialog.py	Tue Oct 02 01:07:37 2018 +0300
@@ -220,16 +220,16 @@
         exe = Preferences.getCorba("omniidl")
         if not exe:
             exe = "omniidl"
-        if Utilities.isWindowsPlatform():
-            exe += ".exe"
+            if Utilities.isWindowsPlatform():
+                exe += ".exe"
         self.__createProgramEntry(
             self.tr("CORBA IDL Compiler"), exe, '-V', 'omniidl', -1)
         # 5b. protobuf
         exe = Preferences.getProtobuf("protoc")
         if not exe:
             exe = "protoc"
-        if Utilities.isWindowsPlatform():
-            exe += ".exe"
+            if Utilities.isWindowsPlatform():
+                exe += ".exe"
         self.__createProgramEntry(
             self.tr("Protobuf Compiler"), exe, '--version', 'libprotoc', -1)
         # 5c. grpc
--- a/Preferences/ProgramsDialog.ui	Sun Sep 30 20:01:12 2018 +0300
+++ b/Preferences/ProgramsDialog.ui	Tue Oct 02 01:07:37 2018 +0300
@@ -11,7 +11,7 @@
    </rect>
   </property>
   <property name="windowTitle">
-   <string>External Programs</string>
+   <string>External Tools</string>
   </property>
   <layout class="QVBoxLayout">
    <item>

eric ide

mercurial