41 Constructor |
41 Constructor |
42 |
42 |
43 @param project reference to the project object |
43 @param project reference to the project object |
44 @param parent parent widget of this dialog (QWidget) |
44 @param parent parent widget of this dialog (QWidget) |
45 """ |
45 """ |
46 QWidget.__init__(self, parent) |
46 super().__init__(parent) |
47 self.setupUi(self) |
47 self.setupUi(self) |
48 |
48 |
49 self.searchDirCompleter = E5DirCompleter(self.searchDirEdit) |
49 self.searchDirCompleter = E5DirCompleter(self.searchDirEdit) |
50 |
50 |
51 self.fileList.headerItem().setText(self.fileList.columnCount(), "") |
51 self.fileList.headerItem().setText(self.fileList.columnCount(), "") |