src/eric7/UI/UserInterface.py

branch
eric7
changeset 10069
435cc5875135
parent 9971
773ad1f1ed22
child 10079
0222a480e93d
child 10124
834c76d6ab4d
diff -r 7febcdccb2a1 -r 435cc5875135 src/eric7/UI/UserInterface.py
--- a/src/eric7/UI/UserInterface.py	Thu May 25 11:12:05 2023 +0200
+++ b/src/eric7/UI/UserInterface.py	Thu May 25 19:51:47 2023 +0200
@@ -777,7 +777,7 @@
         # Create the view manager depending on the configuration setting
         logging.debug("Creating Viewmanager...")
         self.viewmanager = ViewManager.factory(
-            self, self, self.__debugServer, self.pluginManager
+            self, self.__debugServer, self.pluginManager
         )
 
         # Create previewer
@@ -6584,6 +6584,7 @@
                 s = "{0} - {1}".format(program, error)
                 self.appendToStderr(s)
 
+    @pyqtSlot(int, QProcess.ExitStatus)
     def __toolFinished(self, exitCode, exitStatus):
         """
         Private slot to handle the finished signal of a tool process.
@@ -6933,7 +6934,7 @@
         """
         self.launchHelpViewer(url)
 
-    def launchHelpViewer(self, home, searchWord=None, useSingle=False):
+    def launchHelpViewer(self, home, searchWord=None):
         """
         Public slot to start the help viewer/web browser.
 
@@ -6941,8 +6942,6 @@
         @type str or QUrl
         @param searchWord word to search for
         @type str
-        @param useSingle flag indicating to use a single browser window
-        @type bool
         """
         if isinstance(home, QUrl):
             home = home.toString(QUrl.UrlFormattingOption.None_)

eric ide

mercurial