--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnCommandDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnCommandDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -29,10 +29,14 @@ """ Constructor - @param argvList history list of commandline arguments (list of strings) - @param wdList history list of working directories (list of strings) - @param ppath pathname of the project directory (string) - @param parent parent widget of this dialog (QWidget) + @param argvList history list of commandline arguments + @type list of str + @param wdList history list of working directories + @type list of str + @param ppath pathname of the project directory + @type str + @param parent parent widget of this dialog + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -69,7 +73,8 @@ """ Private method used to enable/disable the OK-button. - @param text ignored + @param text text of the command combobox + @type str """ self.okButton.setDisabled(self.commandCombo.currentText() == "") @@ -77,6 +82,7 @@ """ Public method to retrieve the data entered into this dialog. - @return a tuple of argv, workdir + @return tuple cotaining the command line arguments and the working directory + @rtype tuple of (str, str) """ return (self.commandCombo.currentText(), self.workdirPicker.currentText())