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) |