--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -30,7 +30,9 @@ Constructor @param vcs reference to the vcs object - @param parent parent widget (QWidget) + @type Subversion + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -61,8 +63,10 @@ """ Private slot to handle the selection of a new item. - @param current current item (QListWidgetItem) - @param previous previous current item (QListWidgetItem) + @param current current item + @type QListWidgetItem + @param previous previous current item + @type QListWidgetItem """ self.filesList.clear() if current is not None: @@ -74,7 +78,8 @@ """ Public slot to populate the data. - @param path directory name to show change lists for (string) + @param path directory name to show change lists for + @type str """ self.changeListsDict = {} @@ -142,7 +147,7 @@ self.inputGroup.hide() if len(self.changeListsDict) == 0: - self.changeLists.addItem(self.tr("No changelists found")) + self.changeLists.addItem(self.tr("No change lists found")) self.buttonBox.button(QDialogButtonBox.StandardButton.Close).setFocus( Qt.FocusReason.OtherFocusReason ) @@ -155,7 +160,8 @@ """ Private slot called by a button of the button box clicked. - @param button button that was clicked (QAbstractButton) + @param button button that was clicked + @type QAbstractButton """ if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): self.close() @@ -167,8 +173,10 @@ """ Private slot connected to the finished signal. - @param exitCode exit code of the process (integer) - @param exitStatus exit status of the process (QProcess.ExitStatus) + @param exitCode exit code of the process + @type int + @param exitStatus exit status of the process + @type QProcess.ExitStatus """ self.__finish() @@ -232,7 +240,8 @@ """ Private slot to handle the password checkbox toggled. - @param isOn flag indicating the status of the check box (boolean) + @param isOn flag indicating the status of the check box + @type bool """ if isOn: self.input.setEchoMode(QLineEdit.EchoMode.Password) @@ -270,7 +279,8 @@ """ Protected slot to handle a key press event. - @param evt the key press event (QKeyEvent) + @param evt the key press event + @type QKeyEvent """ if self.intercept: self.intercept = False