1027 self.ui.activateWindow() |
1027 self.ui.activateWindow() |
1028 if self.ui.getViewProfile() != "debug": |
1028 if self.ui.getViewProfile() != "debug": |
1029 self.ui.setDebugProfile() |
1029 self.ui.setDebugProfile() |
1030 self.viewmanager.setFileLine(fn, line) |
1030 self.viewmanager.setFileLine(fn, line) |
1031 if not forStack: |
1031 if not forStack: |
1032 self.__getThreadList() |
1032 self.__getThreadList(debuggerId) |
1033 self.__getClientVariables(debuggerId) |
1033 self.__getClientVariables(debuggerId) |
1034 |
1034 |
1035 self.debugActGrp.setEnabled(True) |
1035 self.debugActGrp.setEnabled(True) |
1036 |
1036 |
1037 @pyqtSlot(int, str, bool) |
1037 @pyqtSlot(int, str, bool) |
1301 E5MessageBox.information( |
1301 E5MessageBox.information( |
1302 self.ui, Program, |
1302 self.ui, Program, |
1303 self.tr('The program being debugged has terminated' |
1303 self.tr('The program being debugged has terminated' |
1304 ' unexpectedly.')) |
1304 ' unexpectedly.')) |
1305 |
1305 |
1306 def __getThreadList(self, debuggerId=""): |
1306 def __getThreadList(self, debuggerId): |
1307 """ |
1307 """ |
1308 Private method to get the list of threads from the client. |
1308 Private method to get the list of threads from the client. |
1309 |
1309 |
1310 @param debuggerId ID of the debugger backend |
1310 @param debuggerId ID of the debugger backend |
1311 @type str |
1311 @type str |