MultiProject/AddProjectDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
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

eric ide

mercurial