diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesRenamePatchDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesRenamePatchDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesRenamePatchDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -22,9 +22,12 @@ """ Constructor - @param currentPatch name of the current patch (string) - @param patchesList list of patches to select from (list of strings) - @param parent reference to the parent widget (QWidget) + @param currentPatch name of the current patch + @type str + @param patchesList list of patches to select from + @type list of str + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -52,7 +55,8 @@ """ Private slot to handle changes of the new name. - @param txt text of the edit (string) + @param txt text of the edit + @type str """ self.__updateUI() @@ -61,7 +65,8 @@ """ Private slot to handle changes of the selection method. - @param checked state of the check box (boolean) + @param checked state of the check box + @type bool """ self.__updateUI() @@ -79,7 +84,8 @@ """ Public method to retrieve the entered data. - @return tuple of new name and selected patch (string, string) + @return tuple of new name and selected patch + @rtype tuple of (str, str) """ selectedPatch = "" if self.namedButton.isChecked():