108 |
108 |
109 @pyqtSlot() |
109 @pyqtSlot() |
110 def on_debugClientPicker_aboutToShowPathPickerDialog(self): |
110 def on_debugClientPicker_aboutToShowPathPickerDialog(self): |
111 """ |
111 """ |
112 Private slot to perform actions before the debug client selection |
112 Private slot to perform actions before the debug client selection |
113 dialog is shown. |
113 dialog is shown. |
114 """ |
114 """ |
115 filters = self.project.dbgFilters[ |
115 filters = self.project.dbgFilters[ |
116 self.project.pdata["PROGLANGUAGE"][0]] |
116 self.project.pdata["PROGLANGUAGE"][0]] |
117 filters += self.tr("All Files (*)") |
117 filters += self.tr("All Files (*)") |
118 self.debugClientPicker.setFilters(filters) |
118 self.debugClientPicker.setFilters(filters) |