]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/conditn.tex
non-pch build fixes
[wxWidgets.git] / docs / latex / wx / conditn.tex
index 1c31d62d801f5b7b4d6f9fc1c1d2a9b46e302797..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;
     }
@@ -105,6 +105,10 @@ None.
 
 <wx/thread.h>
 
+\wxheading{Library}
+
+\helpref{wxBase}{librarieslist}
+
 \wxheading{See also}
 
 \helpref{wxThread}{wxthread}, \helpref{wxMutex}{wxmutex}