36 |
36 |
37 @param project reference to the project object |
37 @param project reference to the project object |
38 @param parent parent widget of this dialog (QWidget) |
38 @param parent parent widget of this dialog (QWidget) |
39 @param name name of this dialog (string) |
39 @param name name of this dialog (string) |
40 """ |
40 """ |
41 super(DebuggerPropertiesDialog, self).__init__(parent) |
41 super().__init__(parent) |
42 if name: |
42 if name: |
43 self.setObjectName(name) |
43 self.setObjectName(name) |
44 self.setupUi(self) |
44 self.setupUi(self) |
45 |
45 |
46 debugClientsHistory = Preferences.getProject( |
46 debugClientsHistory = Preferences.getProject( |