eric6/Debugger/DebugUI.py

branch
multi_processing
changeset 7416
6f899e82f9a2
parent 7415
e953b2a449a9
child 7421
4a9900aef04e
equal deleted inserted replaced
7415:e953b2a449a9 7416:6f899e82f9a2
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

eric ide

mercurial