--- 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())