]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix outdated comment for wxCondition::Wait().
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 6 Sep 2013 17:09:01 +0000 (17:09 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 6 Sep 2013 17:09:01 +0000 (17:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74770 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/thread.h

index 3d3a23a13343b96fc60b73fb4f195863049a15f0..796a7dd188c3b385a0249528d2f53204e2dd9e8f 100644 (file)
@@ -346,8 +346,8 @@ public:
 
     // exactly as Wait() except that it may also return if the specified
     // timeout elapses even if the condition hasn't been signalled: in this
-    // case, the return value is false, otherwise (i.e. in case of a normal
-    // return) it is true
+    // case, the return value is wxCOND_TIMEOUT, otherwise (i.e. in case of a
+    // normal return) it is wxCOND_NO_ERROR.
     //
     // the timeout parameter specifies an interval that needs to be waited for
     // in milliseconds