]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/threadpsx.cpp
Fixed nasty bug wxFont
[wxWidgets.git] / src / gtk1 / threadpsx.cpp
index 2d4912c05a32cd4b4d73b2e94867c8a081ba277d..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;
@@ -380,7 +380,7 @@ public:
     wxMainMutex = new wxMutex();
     wxThreadGuiInit();
     p_mainid = pthread_self();
-    p_threads_list = wxList(wxKEY_INTEGER);
+//    p_threads_list = wxList(wxKEY_INTEGER);
     wxMainMutex->Lock();
 
     return TRUE;