solving osx problems (default inlines-hidden) by explicitely exporting the involved methods
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55540 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -67,17 +67,6 @@
|
||||
#define THR_ID(thr) ((long)(thr)->GetId())
|
||||
#endif
|
||||
|
||||
#ifdef __WXMAC__
|
||||
|
||||
// implement wxCriticalSection using mutexes
|
||||
wxCriticalSection::wxCriticalSection( wxCriticalSectionType critSecType )
|
||||
: m_mutex( critSecType == wxCRITSEC_DEFAULT ? wxMUTEX_RECURSIVE : wxMUTEX_DEFAULT ) { }
|
||||
wxCriticalSection::~wxCriticalSection() { }
|
||||
|
||||
void wxCriticalSection::Enter() { (void)m_mutex.Lock(); }
|
||||
void wxCriticalSection::Leave() { (void)m_mutex.Unlock(); }
|
||||
|
||||
#endif
|
||||
// ----------------------------------------------------------------------------
|
||||
// constants
|
||||
// ----------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user