]> git.saurik.com Git - wxWidgets.git/commitdiff
trace mask made static variable
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 2 Aug 1998 23:09:13 +0000 (23:09 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 2 Aug 1998 23:09:13 +0000 (23:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/log.cpp

index 447f2feda9c494a20bd21e4d493fd84ef2b7f3d0..02a7ac365f0223e0925638258067606c81518757 100644 (file)
@@ -212,7 +212,6 @@ wxLog::wxLog()
   m_bHasMessages = FALSE;
   m_bVerbose     = FALSE;
   m_szTimeFormat = "[%d/%b/%y %H:%M:%S] ";
   m_bHasMessages = FALSE;
   m_bVerbose     = FALSE;
   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;
 bool        wxLog::ms_bInitialized = FALSE;
 // ----------------------------------------------------------------------------
 wxLog      *wxLog::ms_pLogger      = NULL;
 bool        wxLog::ms_bInitialized = FALSE;
+wxTraceMask wxLog::ms_ulTraceMask  = (wxTraceMask)0;
 
 // ----------------------------------------------------------------------------
 // stdout error logging helper
 
 // ----------------------------------------------------------------------------
 // stdout error logging helper