25 @param reposURL repository path (string) or None |
25 @param reposURL repository path (string) or None |
26 @param standardLayout flag indicating the layout of the |
26 @param standardLayout flag indicating the layout of the |
27 repository (boolean) |
27 repository (boolean) |
28 @param parent parent widget (QWidget) |
28 @param parent parent widget (QWidget) |
29 """ |
29 """ |
30 QDialog.__init__(self, parent) |
30 super().__init__(parent) |
31 self.setupUi(self) |
31 self.setupUi(self) |
32 |
32 |
33 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
33 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
34 self.okButton.setEnabled(False) |
34 self.okButton.setEnabled(False) |
35 |
35 |