From 91ae025ee2cb2ce4cff15a6e2cd69ceab1519443 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Tue, 15 Oct 2002 16:02:54 +0000 Subject: [PATCH] Fixed wxUSE_THREADS typo git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17539 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/timercmn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/timercmn.cpp b/src/common/timercmn.cpp index 4853669d20..28f69dae3b 100644 --- a/src/common/timercmn.cpp +++ b/src/common/timercmn.cpp @@ -134,7 +134,7 @@ bool wxTimerBase::Start(int milliseconds, bool oneShot) { // under MSW timers only work when they're started from the main thread so // let the caller know about it -#ifdef wxUSE_THREADS +#if wxUSE_THREADS wxASSERT_MSG( wxThread::IsMain(), _T("timer can only be started from the main thread") ); #endif // wxUSE_THREADS