Plugins/VcsPlugins/vcsMercurial/HgRevisionSelectionDialog.py

changeset 1131
7781e396c903
parent 1017
919147f2b518
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
26 @param branchesList list of branches (list of strings) 26 @param branchesList list of branches (list of strings)
27 @param bookmarksList list of bookmarks (list of strings) 27 @param bookmarksList list of bookmarks (list of strings)
28 @param showNone flag influencing the label of the 'None' selection (boolean) 28 @param showNone flag influencing the label of the 'None' selection (boolean)
29 @param parent parent widget (QWidget) 29 @param parent parent widget (QWidget)
30 """ 30 """
31 QDialog.__init__(self, parent) 31 super().__init__(parent)
32 self.setupUi(self) 32 self.setupUi(self)
33 33
34 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) 34 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False)
35 35
36 self.tagCombo.addItems(sorted(tagsList)) 36 self.tagCombo.addItems(sorted(tagsList))

eric ide

mercurial