src/eric7/UI/UserInterface.py

branch
eric7-maintenance
changeset 10079
0222a480e93d
parent 10004
983477114d3c
parent 10069
435cc5875135
child 10148
31ba20629af4
--- a/src/eric7/UI/UserInterface.py	Tue May 02 10:20:23 2023 +0200
+++ b/src/eric7/UI/UserInterface.py	Sat May 27 19:02:58 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