src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesNewPatchDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesNewPatchDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesNewPatchDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -29,8 +29,11 @@
 
         @param mode mode of the dialog (HgQueuesNewPatchDialog.NEW_MODE,
             HgQueuesNewPatchDialog.REFRESH_MODE)
-        @param message text to set as the commit message (string)
-        @param parent reference to the parent widget (QWidget)
+        @type int
+        @param message text to set as the commit message
+        @type str
+        @param parent reference to the parent widget
+        @type QWidget
         @exception ValueError raised to indicate an invalid dialog mode
         """
         super().__init__(parent)
@@ -79,7 +82,8 @@
         """
         Private slot to handle changes of the patch name.
 
-        @param txt text of the edit (string)
+        @param txt text of the edit
+        @type str
         """
         self.__updateUI()
 
@@ -95,7 +99,8 @@
         """
         Private slot to handle changes of the user group state.
 
-        @param checked flag giving the checked state (boolean)
+        @param checked flag giving the checked state
+        @type bool
         """
         self.__updateUI()
 
@@ -104,7 +109,8 @@
         """
         Private slot to handle changes of the currentuser state.
 
-        @param checked flag giving the checked state (boolean)
+        @param checked flag giving the checked state
+        @type bool
         """
         self.__updateUI()
 
@@ -113,7 +119,8 @@
         """
         Private slot to handle changes of the user name.
 
-        @param txt text of the edit (string)
+        @param txt text of the edit
+        @type str
         """
         self.__updateUI()
 
@@ -125,8 +132,9 @@
             flag indicating to set the user, a flag indicating to use the
             current user and the user name and another tuple giving a flag
             indicating to set the date, a flag indicating to use the
-            current date and the date (string, string, (boolean, boolean,
-            string), (boolean, boolean, string))
+            current date and the date
+        @rtype tuple of (str, str, tuple of (bool, bool, str), tuple of
+            (bool, bool, str))
         """
         userData = (
             self.userGroup.isChecked(),

eric ide

mercurial