trace mask made static variable

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1998-08-02 23:09:13 +00:00
parent 46eaa42260
commit 88f2aa3720

View File

@@ -212,7 +212,6 @@ wxLog::wxLog()
m_bHasMessages = FALSE; m_bHasMessages = FALSE;
m_bVerbose = FALSE; m_bVerbose = FALSE;
m_szTimeFormat = "[%d/%b/%y %H:%M:%S] "; m_szTimeFormat = "[%d/%b/%y %H:%M:%S] ";
m_ulTraceMask = (wxTraceMask)0; // -1 to set all bits
} }
wxLog *wxLog::GetActiveTarget() wxLog *wxLog::GetActiveTarget()
@@ -707,6 +706,7 @@ wxLogWindow::~wxLogWindow()
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
wxLog *wxLog::ms_pLogger = NULL; wxLog *wxLog::ms_pLogger = NULL;
bool wxLog::ms_bInitialized = FALSE; bool wxLog::ms_bInitialized = FALSE;
wxTraceMask wxLog::ms_ulTraceMask = (wxTraceMask)0;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// stdout error logging helper // stdout error logging helper