33 |
33 |
34 @param project reference to the project object |
34 @param project reference to the project object |
35 @param parent parent widget of this dialog (QWidget) |
35 @param parent parent widget of this dialog (QWidget) |
36 @param name name of this dialog (string) |
36 @param name name of this dialog (string) |
37 """ |
37 """ |
38 QDialog.__init__(self, parent) |
38 super().__init__(parent) |
39 if name: |
39 if name: |
40 self.setObjectName(name) |
40 self.setObjectName(name) |
41 self.setupUi(self) |
41 self.setupUi(self) |
42 |
42 |
43 self.debugClientCompleter = E5FileCompleter(self.debugClientEdit) |
43 self.debugClientCompleter = E5FileCompleter(self.debugClientEdit) |