]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/conditn.tex
added wxWindow::GetPrev/NextSibling()
[wxWidgets.git] / 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;
     }