Debugger/DebugViewer.py

changeset 7
c679fb30c8f3
parent 0
de9c2efb9d02
child 8
0ae9bd4d2993
equal deleted inserted replaced
6:52e8c820d0dd 7:c679fb30c8f3
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 = current.text(0).toLong() 435 tid, ok = int(current.text(0))
436 if ok: 436 if ok:
437 self.debugServer.remoteSetThread(tid) 437 self.debugServer.remoteSetThread(tid)

eric ide

mercurial