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