32 @param parent parent widget (QWidget) |
32 @param parent parent widget (QWidget) |
33 """ |
33 """ |
34 QWidget.__init__(self, parent, Qt.WindowFlags(Qt.Window)) |
34 QWidget.__init__(self, parent, Qt.WindowFlags(Qt.Window)) |
35 self.setupUi(self) |
35 self.setupUi(self) |
36 |
36 |
37 if vcs.versionStr < '1.5.0': |
37 if vcs.version < (1, 5, 0): |
38 self.changeListsGroup.hide() |
38 self.changeListsGroup.hide() |
39 |
39 |
40 def showEvent(self, evt): |
40 def showEvent(self, evt): |
41 """ |
41 """ |
42 Public method called when the dialog is about to be shown. |
42 Public method called when the dialog is about to be shown. |