]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/thread.cpp
fixing native font info support bugs
[wxWidgets.git] / src / osx / carbon / thread.cpp
index f780d4bc03a3968331c78dd6254e62731041b0d9..f4bfdac1737aaaa185ab4aee5744fc97c135c4e0 100644 (file)
@@ -343,7 +343,7 @@ private:
     wxMutex& m_mutex;
     wxSemaphore m_semaphore;
 
-    DECLARE_NO_COPY_CLASS(wxConditionInternal)
+    wxDECLARE_NO_COPY_CLASS(wxConditionInternal);
 };
 
 wxConditionInternal::wxConditionInternal( wxMutex& mutex )
@@ -848,7 +848,6 @@ wxThread::~wxThread()
 
     g_numberOfThreads--;
 
-#ifdef __WXDEBUG__
     m_critsect.Enter();
 
     // check that the thread either exited or couldn't be created
@@ -861,7 +860,6 @@ wxThread::~wxThread()
     }
 
     m_critsect.Leave();
-#endif
 
     wxDELETE( m_internal ) ;
 }