src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnPropDelDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnPropDelDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnPropDelDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -22,7 +22,9 @@
         Constructor
 
         @param recursive flag indicating a recursive set is requested
-        @param parent parent widget (QWidget)
+        @type bool
+        @param parent parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -39,7 +41,8 @@
         """
         Private method used to enable/disable the OK-button.
 
-        @param text ignored
+        @param text text of the property name edit
+        @type str
         """
         self.okButton.setDisabled(text == "")
 
@@ -49,6 +52,6 @@
 
         @return tuple of two values giving the property name and a flag
             indicating, that this property should be applied recursively.
-            (string, boolean)
+        @rtype tuple of (str, bool)
         """
         return (self.propNameEdit.text(), self.recurseCheckBox.isChecked())

eric ide

mercurial