33 @param parent parent widget of the dialog (QWidget) |
33 @param parent parent widget of the dialog (QWidget) |
34 """ |
34 """ |
35 QDialog.__init__(self, parent) |
35 QDialog.__init__(self, parent) |
36 self.setupUi(self) |
36 self.setupUi(self) |
37 |
37 |
38 if vcs.versionStr < "1.4.0": |
38 if vcs.version < (1, 4, 0): |
39 self.summaryCheckBox.setEnabled(False) |
39 self.summaryCheckBox.setEnabled(False) |
40 self.summaryCheckBox.setChecked(False) |
40 self.summaryCheckBox.setChecked(False) |
41 |
41 |
42 self.vcs = vcs |
42 self.vcs = vcs |
43 self.tagsList = tagsList |
43 self.tagsList = tagsList |