]> git.saurik.com Git - wxWidgets.git/commitdiff
don't use DLL export declaration with inline functions, it is ignored and just result...
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 21 Jun 2007 22:29:07 +0000 (22:29 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 21 Jun 2007 22:29:07 +0000 (22:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46601 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/thread.h

index b95652dcac498f158f0c4c7e7503e492064cc16a..34b632b39c060f58eaa9d4d4aa8fcd16811952b0 100644 (file)
@@ -693,8 +693,8 @@ inline bool wxIsMainThread() { return wxThread::IsMain(); }
 #else // !wxUSE_THREADS
 
 // no thread support
-inline void WXDLLIMPEXP_BASE wxMutexGuiEnter() { }
-inline void WXDLLIMPEXP_BASE wxMutexGuiLeave() { }
+inline void wxMutexGuiEnter() { }
+inline void wxMutexGuiLeave() { }
 
 // macros for entering/leaving critical sections which may be used without
 // having to take them inside "#if wxUSE_THREADS"