From 8cc1b7b526c21655907e0a0485daf3611a699ca8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 29 Oct 2007 12:13:53 +0000 Subject: [PATCH] fix syntax errors in the example git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49516 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/conditn.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/latex/wx/conditn.tex b/docs/latex/wx/conditn.tex index cf3a6df608..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; }