--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesFoldDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesFoldDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -25,8 +25,10 @@ """ Constructor - @param patchesList list of patches to select from (list of strings) - @param parent reference to the parent widget (QWidget) + @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) @@ -119,9 +121,10 @@ """ Private slot to react on changes of the current item of source patches. - @param current reference to the new current item (QTreeWidgetItem) + @param current reference to the new current item + @type QTreeWidgetItem @param previous reference to the previous current item - (QTreeWidgetItem) + @type QTreeWidgetItem """ self.addButton.setEnabled(current is not None) @@ -131,9 +134,10 @@ Private slot to react on changes of the current item of selected patches. - @param current reference to the new current item (QTreeWidgetItem) + @param current reference to the new current item + @type QTreeWidgetItem @param previous reference to the previous current item - (QTreeWidgetItem) + @type QTreeWidgetItem """ self.removeButton.setEnabled(current is not None) @@ -146,7 +150,7 @@ Public method to retrieve the entered data. @return tuple of commit message and list of selected patches - (string, list of strings) + @rtype tuple of (str, list of str) """ patchesList = [] for row in range(self.selectedPatches.topLevelItemCount()):