eric6/Plugins/VcsPlugins/vcsGit/GitTagDialog.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
32 @param taglist list of previously entered tags (list of strings) 32 @param taglist list of previously entered tags (list of strings)
33 @param revision revision to set tag for (string) 33 @param revision revision to set tag for (string)
34 @param tagName name of the tag (string) 34 @param tagName name of the tag (string)
35 @param parent parent widget (QWidget) 35 @param parent parent widget (QWidget)
36 """ 36 """
37 super(GitTagDialog, self).__init__(parent) 37 super().__init__(parent)
38 self.setupUi(self) 38 self.setupUi(self)
39 39
40 self.okButton = self.buttonBox.button( 40 self.okButton = self.buttonBox.button(
41 QDialogButtonBox.StandardButton.Ok) 41 QDialogButtonBox.StandardButton.Ok)
42 self.okButton.setEnabled(False) 42 self.okButton.setEnabled(False)

eric ide

mercurial