]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/threadpsx.cpp
#ifdefed out Ole... functions for Cygwin.
[wxWidgets.git] / src / gtk / threadpsx.cpp
index 4219e404bee91809fd7a39ce7288961aa799eb1d..2fb5106aa743b3c45a3202093c51cc9562f57014 100644 (file)
@@ -19,6 +19,7 @@
 #include "wx/thread.h"
 #include "wx/module.h"
 #include "wx/utils.h"
+#include "wx/log.h"
 
 enum thread_state {
   STATE_IDLE = 0,
@@ -63,8 +64,7 @@ wxMutex::wxMutex()
 wxMutex::~wxMutex()
 {
   if (m_locked > 0)
-    wxDebugMsg("wxMutex warning: freeing a locked mutex (%d locks)\n",
-               m_locked);
+    wxLogDebug( "wxMutex warning: freeing a locked mutex (%d locks)\n", m_locked );
 
   pthread_mutex_destroy(&(p_internal->p_mutex));
   delete p_internal;