Debugger/DebugUI.py

changeset 6376
201067699041
parent 6352
4bdc6503df81
child 6416
a915f8dd1ca6
equal deleted inserted replaced
6375:caea2f6950ee 6376:201067699041
2061 autoContinue=autoContinue, forProject=debugProject, 2061 autoContinue=autoContinue, forProject=debugProject,
2062 runInConsole=console, autoFork=forkAutomatically, 2062 runInConsole=console, autoFork=forkAutomatically,
2063 forkChild=forkIntoChild, clientType=self.clientType, 2063 forkChild=forkIntoChild, clientType=self.clientType,
2064 enableCallTrace=enableCallTrace) 2064 enableCallTrace=enableCallTrace)
2065 2065
2066 # Signal that we have started a debugging session 2066 if self.debugServer.isClientProcessUp() and \
2067 self.debuggingStarted.emit(fn) 2067 self.debugServer.getClientType() == self.clientType:
2068 2068 # Signal that we have started a debugging session
2069 self.stopAct.setEnabled(True) 2069 self.debuggingStarted.emit(fn)
2070
2071 self.stopAct.setEnabled(True)
2070 2072
2071 if dlg.clearHistories(): 2073 if dlg.clearHistories():
2072 self.setArgvHistory("", clearHistories=True) 2074 self.setArgvHistory("", clearHistories=True)
2073 self.setWdHistory("", clearHistories=True) 2075 self.setWdHistory("", clearHistories=True)
2074 self.setEnvHistory("", clearHistories=True) 2076 self.setEnvHistory("", clearHistories=True)

eric ide

mercurial