Removed a few old wxDebugMsg (now wxLogDebug)

block first event from wxCeckBox after SetValue() also


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1156 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-12-10 14:34:14 +00:00
parent 5e5f494a6e
commit 3069ac4e45
18 changed files with 113 additions and 77 deletions

View File

@@ -15,6 +15,7 @@
#include "wx/wx.h"
#include "wx/module.h"
#include "wx/thread.h"
#include "wx/log.h"
wxMutex::wxMutex()
{
@@ -24,7 +25,7 @@ wxMutex::wxMutex()
wxMutex::~wxMutex()
{
if (m_locked)
wxDebugMsg("wxMutex warning: destroying a locked mutex (%d locks)\n", m_locked);
wxLogDebug( "wxMutex warning: destroying a locked mutex (%d locks)\n", m_locked );
}
wxMutexError wxMutex::Lock()