Debugger/DebugViewer.py

changeset 8
0ae9bd4d2993
parent 7
c679fb30c8f3
child 12
1d8dd9706f46
equal deleted inserted replaced
7:c679fb30c8f3 8:0ae9bd4d2993
430 430
431 @param current reference to the new current item (QTreeWidgetItem) 431 @param current reference to the new current item (QTreeWidgetItem)
432 @param previous reference to the previous current item (QTreeWidgetItem) 432 @param previous reference to the previous current item (QTreeWidgetItem)
433 """ 433 """
434 if current is not None and self.__doThreadListUpdate: 434 if current is not None and self.__doThreadListUpdate:
435 tid, ok = int(current.text(0)) 435 tid = int(current.text(0))
436 if ok: 436 self.debugServer.remoteSetThread(tid)
437 self.debugServer.remoteSetThread(tid)

eric ide

mercurial