src/eric7/Preferences/ProgramsDialog.py

branch
eric7
changeset 9559
34fc53e6159d
parent 9482
a2bc06a54d9d
child 9624
b47dfa7a137d
diff -r 6d6a0e5f65ca -r 34fc53e6159d src/eric7/Preferences/ProgramsDialog.py
--- a/src/eric7/Preferences/ProgramsDialog.py	Sun Dec 04 10:34:43 2022 +0100
+++ b/src/eric7/Preferences/ProgramsDialog.py	Sun Dec 04 11:58:37 2022 +0100
@@ -268,39 +268,7 @@
                     exeModule=["-m", "pip"],
                 )
 
-            # 6. do the CORBA and Protobuf programs
-            # 6a. omniORB
-            exe = Preferences.getCorba("omniidl")
-            if not exe:
-                exe = "omniidl"
-                if Utilities.isWindowsPlatform():
-                    exe += ".exe"
-            self.__createProgramEntry(
-                self.tr("CORBA IDL Compiler"), exe, "-V", "omniidl", -1
-            )
-            # 6b. protobuf
-            exe = Preferences.getProtobuf("protoc")
-            if not exe:
-                exe = "protoc"
-                if Utilities.isWindowsPlatform():
-                    exe += ".exe"
-            self.__createProgramEntry(
-                self.tr("Protobuf Compiler"), exe, "--version", "libprotoc", -1
-            )
-            # 6c. grpc
-            exe = Preferences.getProtobuf("grpcPython")
-            if not exe:
-                exe = Globals.getPythonExecutable()
-            self.__createProgramEntry(
-                self.tr("gRPC Compiler"),
-                exe,
-                "--version",
-                "libprotoc",
-                -1,
-                exeModule=["-m", "grpc_tools.protoc"],
-            )
-
-            # 7. do the spell checking entry
+            # 6. do the spell checking entry
             try:
                 import enchant  # __IGNORE_WARNING_I10__
 
@@ -317,7 +285,7 @@
                 version = ""
             self.__createEntry(self.tr("Spell Checker - PyEnchant"), text, version)
 
-            # 8. do the pygments entry
+            # 7. do the pygments entry
             try:
                 import pygments  # __IGNORE_WARNING_I10__
 
@@ -334,7 +302,7 @@
                 version = ""
             self.__createEntry(self.tr("Source Highlighter - Pygments"), text, version)
 
-            # 9. do the MicroPython related entries
+            # 8. do the MicroPython related entries
             exe = Preferences.getMicroPython("MpyCrossCompiler")
             if not exe:
                 exe = "mpy-cross"
@@ -364,7 +332,7 @@
                 -1,
             )
 
-            # 10. do the jedi related entries
+            # 9. do the jedi related entries
             try:
                 import jedi  # __IGNORE_WARNING_I10__
 
@@ -381,7 +349,7 @@
                 version = ""
             self.__createEntry(self.tr("Code Assistant - Jedi"), text, version)
 
-            # 11. do the plugin related programs
+            # 10. do the plugin related programs
             pm = ericApp().getObject("PluginManager")
             for info in pm.getPluginExeDisplayData():
                 if info["programEntry"]:

eric ide

mercurial