eric6/UI/UserInterface.py

changeset 7900
72b88fb20261
parent 7853
35dcac32984a
child 7902
a5248d27c8a9
--- a/eric6/UI/UserInterface.py	Sat Dec 19 15:06:20 2020 +0100
+++ b/eric6/UI/UserInterface.py	Sat Dec 19 15:22:26 2020 +0100
@@ -5872,9 +5872,9 @@
         
         @param home filename of file to be shown or URL to be opened
         @type str or QUrl
-        @keyparam searchWord word to search for
+        @param searchWord word to search for
         @type str
-        @keyparam useSingle flag indicating to use a single browser window
+        @param useSingle flag indicating to use a single browser window
         @type bool
         """
         if isinstance(home, QUrl):
@@ -5897,7 +5897,7 @@
         
         @param home filename of file to be shown or URL to be opened
         @type str
-        @keyparam searchWord word to search for
+        @param searchWord word to search for
         @type str
         @return flag indicating a successful launch
         @rtype bool
@@ -6656,9 +6656,9 @@
         """
         Public slot to show the Find In Files dialog.
         
-        @keyparam txt text to search for (string)
-        @keyparam searchDir directory to search in (string)
-        @keyparam openFiles flag indicating to operate on open files (boolean)
+        @param txt text to search for (string)
+        @param searchDir directory to search in (string)
+        @param openFiles flag indicating to operate on open files (boolean)
         """
         if self.findFilesDialog is None:
             from .FindFileDialog import FindFileDialog
@@ -6678,9 +6678,9 @@
         """
         Public slot to show the Find & Replace In Files dialog.
         
-        @keyparam txt text to search for (string)
-        @keyparam searchDir directory to search in (string)
-        @keyparam openFiles flag indicating to operate on open files (boolean)
+        @param txt text to search for (string)
+        @param searchDir directory to search in (string)
+        @param openFiles flag indicating to operate on open files (boolean)
         """
         if self.replaceFilesDialog is None:
             from .FindFileDialog import FindFileDialog
@@ -6974,7 +6974,7 @@
         
         @param manual flag indicating an invocation via the menu (boolean)
         @param alternative index of server to download from (integer)
-        @keyparam showVersions flag indicating the show versions mode (boolean)
+        @param showVersions flag indicating the show versions mode (boolean)
         """
         if self.isOnline():
             if not manual:

eric ide

mercurial