]> git.saurik.com Git - wxWidgets.git/commitdiff
fix syntax errors in the example
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 29 Oct 2007 12:13:53 +0000 (12:13 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 29 Oct 2007 12:13:53 +0000 (12:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49516 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/conditn.tex

index cf3a6df6081e9565348bab0508b8254d69d4209a..84510e7ee4f733b958b2f6fdb57627db1ee4e825 100644 (file)
@@ -44,8 +44,8 @@ public:
         // tell the other(s) thread(s) that we're about to terminate: we must
         // lock the mutex first or we might signal the condition before the
         // waiting threads start waiting on it!
-        wxMutexLocker lock(m_mutex);
-        m_condition.Broadcast(); // same as Signal() here -- one waiter only
+        wxMutexLocker lock(*m_mutex);
+        m_condition->Broadcast(); // same as Signal() here -- one waiter only
 
         return 0;
     }