--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -26,7 +26,9 @@ Constructor @param vcs reference to the vcs object - @param parent reference to the parent widget (QWidget) + @type Hg + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -44,7 +46,8 @@ """ Protected slot implementing a close event handler. - @param e close event (QCloseEvent) + @param e close event + @type QCloseEvent """ if self.__hgClient.isExecuting(): self.__hgClient.cancel() @@ -84,7 +87,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() @@ -98,7 +102,8 @@ """ Private slot to show some output. - @param out output to be shown (string) + @param out output to be shown + @type str """ self.messageEdit.appendPlainText(Utilities.filterAnsiSequences(out)) @@ -106,7 +111,8 @@ """ Private slot to show some error. - @param out error to be shown (string) + @param out error to be shown + @type str """ self.messageEdit.appendPlainText(self.tr("Error: ")) self.messageEdit.appendPlainText(Utilities.filterAnsiSequences(out))