21 """ |
21 """ |
22 Constructor |
22 Constructor |
23 |
23 |
24 @param relPath initial package path relative to the project root (string) |
24 @param relPath initial package path relative to the project root (string) |
25 """ |
25 """ |
26 QDialog.__init__(self, parent) |
26 super().__init__(parent) |
27 self.setupUi(self) |
27 self.setupUi(self) |
28 |
28 |
29 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
29 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
30 self.okButton.setEnabled(False) |
30 self.okButton.setEnabled(False) |
31 |
31 |