--- a/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py Sun Sep 29 14:22:08 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py Sun Sep 29 15:08:57 2013 +0200 @@ -37,6 +37,7 @@ @param repodir name of the repository directory (string) @param vcs reference to the vcs object @param parent reference to the parent widget (QWidget) + @exception ValueError raised to indicate an invalid dialog mode """ super().__init__(parent) self.setupUi(self) @@ -122,6 +123,8 @@ def on_nameEdit_textChanged(self, txt): """ Private slot to handle changes of the entered queue name. + + @param txt text of the edit (string) """ if self.__mode == HgQueuesQueueManagementDialog.NAME_INPUT: self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(txt != "")