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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user