30 @param tagsList list of tags (list of strings) |
30 @param tagsList list of tags (list of strings) |
31 @param branchesList list of branches (list of strings) |
31 @param branchesList list of branches (list of strings) |
32 @param path pathname to determine the repository URL from (string) |
32 @param path pathname to determine the repository URL from (string) |
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 super().__init__(parent) |
36 self.setupUi(self) |
36 self.setupUi(self) |
37 |
37 |
38 if vcs.versionStr < "1.4.0": |
38 if vcs.versionStr < "1.4.0": |
39 self.summaryCheckBox.setEnabled(False) |
39 self.summaryCheckBox.setEnabled(False) |
40 self.summaryCheckBox.setChecked(False) |
40 self.summaryCheckBox.setChecked(False) |