From 4a08283ef0ef65f44d64493255c0c77a885c25e3 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 23 Jul 2003 19:19:06 +0000 Subject: [PATCH] compilation fix... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22261 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/thread.cpp b/src/msw/thread.cpp index 52b3291077..46719dc9c2 100644 --- a/src/msw/thread.cpp +++ b/src/msw/thread.cpp @@ -826,7 +826,7 @@ wxThreadInternal::WaitForTerminate(bool shouldCancel, // in a secondary thread because if it had created some // window somehow (possible not even using wxWindows) // the system might dead lock then - if ( IsMain() ) + if ( wxThread::IsMain() ) { // it looks that sometimes WAIT_OBJECT_0 + 1 is // returned but there are no messages in the thread