Fix for a mistake spotted by Enrico with the SBThread::queue_id accessor.
authorJason Molenda <jmolenda@apple.com>
Tue, 22 Oct 2013 01:37:18 +0000 (01:37 +0000)
committerJason Molenda <jmolenda@apple.com>
Tue, 22 Oct 2013 01:37:18 +0000 (01:37 +0000)
llvm-svn: 193136

lldb/scripts/Python/interface/SBThread.i

index 15bb562c6cc222a1c35cd5c6392ec9a8ef107b7c..c38be5f0e70808178dee695fcef7ecec16c9af92 100644 (file)
@@ -285,7 +285,7 @@ public:
         if _newclass: queue = property(GetQueueName, None, doc='''A read only property that returns the dispatch queue name of this thread as a string.''')
 
         __swig_getmethods__["queue_id"] = GetQueueID
-        if _newclass: queue = property(GetQueueID, None, doc='''A read only property that returns the dispatch queue id of this thread as an integer.''')
+        if _newclass: queue_id = property(GetQueueID, None, doc='''A read only property that returns the dispatch queue id of this thread as an integer.''')
 
         __swig_getmethods__["stop_reason"] = GetStopReason
         if _newclass: stop_reason = property(GetStopReason, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eStopReason") that represents the reason this thread stopped.''')