Debugger/DebugViewer.py

changeset 8
0ae9bd4d2993
parent 7
c679fb30c8f3
child 12
1d8dd9706f46
--- a/Debugger/DebugViewer.py	Wed Dec 30 15:40:33 2009 +0000
+++ b/Debugger/DebugViewer.py	Wed Dec 30 16:43:09 2009 +0000
@@ -432,6 +432,5 @@
         @param previous reference to the previous current item (QTreeWidgetItem)
         """
         if current is not None and self.__doThreadListUpdate:
-            tid, ok = int(current.text(0))
-            if ok:
-                self.debugServer.remoteSetThread(tid)
+            tid = int(current.text(0))
+            self.debugServer.remoteSetThread(tid)

eric ide

mercurial