28 |
28 |
29 @param parent parent widget of this dialog (QWidget) |
29 @param parent parent widget of this dialog (QWidget) |
30 @param startdir start directory for the selection dialog (string) |
30 @param startdir start directory for the selection dialog (string) |
31 @param project dictionary containing project data |
31 @param project dictionary containing project data |
32 """ |
32 """ |
33 QDialog.__init__(self, parent) |
33 super().__init__(parent) |
34 self.setupUi(self) |
34 self.setupUi(self) |
35 |
35 |
36 self.fileCompleter = E5FileCompleter(self.filenameEdit) |
36 self.fileCompleter = E5FileCompleter(self.filenameEdit) |
37 |
37 |
38 self.startdir = startdir |
38 self.startdir = startdir |