33 @param argvList history list of commandline arguments (list of strings) |
33 @param argvList history list of commandline arguments (list of strings) |
34 @param wdList history list of working directories (list of strings) |
34 @param wdList history list of working directories (list of strings) |
35 @param ppath pathname of the project directory (string) |
35 @param ppath pathname of the project directory (string) |
36 @param parent parent widget of this dialog (QWidget) |
36 @param parent parent widget of this dialog (QWidget) |
37 """ |
37 """ |
38 QDialog.__init__(self, parent) |
38 super().__init__(parent) |
39 self.setupUi(self) |
39 self.setupUi(self) |
40 |
40 |
41 self.workdirCompleter = E5DirCompleter(self.workdirCombo) |
41 self.workdirCompleter = E5DirCompleter(self.workdirCombo) |
42 |
42 |
43 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
43 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |