1130:3e9f0330f833 | 1131:7781e396c903 |
---|---|
29 Constructor | 29 Constructor |
30 | 30 |
31 @param vcs reference to the vcs object | 31 @param vcs reference to the vcs object |
32 @param parent parent widget (QWidget) | 32 @param parent parent widget (QWidget) |
33 """ | 33 """ |
34 QDialog.__init__(self, parent) | 34 super().__init__(parent) |
35 self.setupUi(self) | 35 self.setupUi(self) |
36 SvnDialogMixin.__init__(self) | 36 SvnDialogMixin.__init__(self) |
37 | 37 |
38 self.vcs = vcs | 38 self.vcs = vcs |
39 | 39 |