replaced annoying wxLogDebug()s with wxLogTrace()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35191 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-08-15 12:11:53 +00:00
parent 6b93f25b0a
commit f02a4ffa5f

View File

@@ -56,6 +56,13 @@
//For targeting OSX
#include "wx/mac/private.h"
// ----------------------------------------------------------------------------
// constants
// ----------------------------------------------------------------------------
// trace mask for activation tracing messages
static const wxChar *TRACE_ACTIVATE = _T("activation");
// ----------------------------------------------------------------------------
// globals
// ----------------------------------------------------------------------------
@@ -1244,14 +1251,16 @@ void wxTopLevelWindowMac::MacDelayedDeactivation(long timestamp)
{
if(s_macDeactivateWindow)
{
wxLogDebug(wxT("Doing delayed deactivation of %p"),s_macDeactivateWindow);
wxLogTrace(TRACE_ACTIVATE,
wxT("Doing delayed deactivation of %p"),
s_macDeactivateWindow);
s_macDeactivateWindow->MacActivate(timestamp, false);
}
}
void wxTopLevelWindowMac::MacActivate( long timestamp , bool inIsActivating )
{
// wxLogDebug(wxT("TopLevel=%p::MacActivate"),this);
wxLogTrace(TRACE_ACTIVATE, wxT("TopLevel=%p::MacActivate"), this);
if(s_macDeactivateWindow==this)
s_macDeactivateWindow=NULL;