X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ddca12cfd9c965963eb63751252000d03a12d9da..c699b4583b6047191ac326728654c6fe8920aa7b:/docs/latex/wx/conditn.tex diff --git a/docs/latex/wx/conditn.tex b/docs/latex/wx/conditn.tex index 1c31d62d80..84510e7ee4 100644 --- a/docs/latex/wx/conditn.tex +++ b/docs/latex/wx/conditn.tex @@ -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. +\wxheading{Library} + +\helpref{wxBase}{librarieslist} + \wxheading{See also} \helpref{wxThread}{wxthread}, \helpref{wxMutex}{wxmutex}