30 Constructor |
30 Constructor |
31 |
31 |
32 @param vcs reference to the vcs object |
32 @param vcs reference to the vcs object |
33 @param parent parent widget (QWidget) |
33 @param parent parent widget (QWidget) |
34 """ |
34 """ |
35 super(SvnCommitDialog, self).__init__( |
35 super().__init__( |
36 parent, Qt.WindowFlags(Qt.WindowType.Window)) |
36 parent, Qt.WindowFlags(Qt.WindowType.Window)) |
37 self.setupUi(self) |
37 self.setupUi(self) |
38 |
38 |
39 if vcs.version < (1, 5, 0): |
39 if vcs.version < (1, 5, 0): |
40 self.changeListsGroup.hide() |
40 self.changeListsGroup.hide() |