28 |
28 |
29 @param argvList history list of commandline arguments (list of strings) |
29 @param argvList history list of commandline arguments (list of strings) |
30 @param ppath pathname of the project directory (string) |
30 @param ppath pathname of the project directory (string) |
31 @param parent parent widget of this dialog (QWidget) |
31 @param parent parent widget of this dialog (QWidget) |
32 """ |
32 """ |
33 QDialog.__init__(self, parent) |
33 super().__init__(parent) |
34 self.setupUi(self) |
34 self.setupUi(self) |
35 |
35 |
36 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
36 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
37 self.okButton.setEnabled(False) |
37 self.okButton.setEnabled(False) |
38 |
38 |