eric7/Tools/TrayStarter.py

branch
eric7
changeset 8314
e3642a6a1e71
parent 8312
800c432b34c8
child 8318
962bce857696
--- a/eric7/Tools/TrayStarter.py	Sat May 15 19:01:16 2021 +0200
+++ b/eric7/Tools/TrayStarter.py	Sat May 15 20:08:03 2021 +0200
@@ -25,7 +25,7 @@
 import Utilities
 import Preferences
 
-from eric6config import getConfig
+from eric7config import getConfig
 
 
 class TrayStarter(QSystemTrayIcon):
@@ -290,37 +290,37 @@
         """
         Private slot to start the eric Mini Editor.
         """
-        self.__startProc("eric6_editor.py")
+        self.__startProc("eric7_editor.py")
     
     def __startEric(self):
         """
         Private slot to start the eric IDE.
         """
-        self.__startProc("eric6.py")
+        self.__startProc("eric7.py")
 
     def __startPreferences(self):
         """
         Private slot to start the eric configuration dialog.
         """
-        self.__startProc("eric6_configure.py")
+        self.__startProc("eric7_configure.py")
 
     def __startPluginInstall(self):
         """
         Private slot to start the eric plugin installation dialog.
         """
-        self.__startProc("eric6_plugininstall.py")
+        self.__startProc("eric7_plugininstall.py")
 
     def __startPluginUninstall(self):
         """
         Private slot to start the eric plugin uninstallation dialog.
         """
-        self.__startProc("eric6_pluginuninstall.py")
+        self.__startProc("eric7_pluginuninstall.py")
 
     def __startPluginRepository(self):
         """
         Private slot to start the eric plugin repository dialog.
         """
-        self.__startProc("eric6_pluginrepository.py")
+        self.__startProc("eric7_pluginrepository.py")
 
     def __startWebBrowser(self):
         """
@@ -328,7 +328,7 @@
         """
         variant = Globals.getWebBrowserSupport()
         if variant == "QtWebEngine":
-            self.__startProc("eric6_browser.py")
+            self.__startProc("eric7_browser.py")
 
     def __startWebBrowserQtHelp(self):
         """
@@ -336,7 +336,7 @@
         """
         variant = Globals.getWebBrowserSupport()
         if variant == "QtWebEngine":
-            self.__startProc("eric6_browser.py", "--qthelp")
+            self.__startProc("eric7_browser.py", "--qthelp")
 
     def __startWebBrowserPrivate(self):
         """
@@ -344,79 +344,79 @@
         """
         variant = Globals.getWebBrowserSupport()
         if variant == "QtWebEngine":
-            self.__startProc("eric6_browser.py", "--private")
+            self.__startProc("eric7_browser.py", "--private")
 
     def __startUIPreviewer(self):
         """
         Private slot to start the eric UI previewer.
         """
-        self.__startProc("eric6_uipreviewer.py")
+        self.__startProc("eric7_uipreviewer.py")
 
     def __startTRPreviewer(self):
         """
         Private slot to start the eric translations previewer.
         """
-        self.__startProc("eric6_trpreviewer.py")
+        self.__startProc("eric7_trpreviewer.py")
 
     def __startUnittest(self):
         """
         Private slot to start the eric unittest dialog.
         """
-        self.__startProc("eric6_unittest.py")
+        self.__startProc("eric7_unittest.py")
 
     def __startDiff(self):
         """
         Private slot to start the eric diff dialog.
         """
-        self.__startProc("eric6_diff.py")
+        self.__startProc("eric7_diff.py")
 
     def __startCompare(self):
         """
         Private slot to start the eric compare dialog.
         """
-        self.__startProc("eric6_compare.py")
+        self.__startProc("eric7_compare.py")
     
     def __startSqlBrowser(self):
         """
         Private slot to start the eric sql browser dialog.
         """
-        self.__startProc("eric6_sqlbrowser.py")
+        self.__startProc("eric7_sqlbrowser.py")
 
     def __startIconEditor(self):
         """
         Private slot to start the eric icon editor dialog.
         """
-        self.__startProc("eric6_iconeditor.py")
+        self.__startProc("eric7_iconeditor.py")
 
     def __startSnapshot(self):
         """
         Private slot to start the eric snapshot dialog.
         """
-        self.__startProc("eric6_snap.py")
+        self.__startProc("eric7_snap.py")
 
     def __startQRegularExpression(self):
         """
         Private slot to start the eric QRegularExpression editor dialog.
         """
-        self.__startProc("eric6_qregularexpression.py")
+        self.__startProc("eric7_qregularexpression.py")
 
     def __startPyRe(self):
         """
         Private slot to start the eric Python re editor dialog.
         """
-        self.__startProc("eric6_re.py")
+        self.__startProc("eric7_re.py")
     
     def __startHexEditor(self):
         """
         Private slot to start the eric hex editor dialog.
         """
-        self.__startProc("eric6_hexeditor.py")
+        self.__startProc("eric7_hexeditor.py")
     
     def __startShell(self):
         """
         Private slot to start the eric Shell window.
         """
-        self.__startProc("eric6_shell.py")
+        self.__startProc("eric7_shell.py")
 
     def __showRecentProjectsMenu(self):
         """
@@ -479,7 +479,7 @@
         filename = act.data()
         if filename:
             self.__startProc(
-                "eric6.py",
+                "eric7.py",
                 filename)
     
     def __showPreferences(self):

eric ide

mercurial