From 88f2aa37205cfe0246df635700dbdb66ebccbd4f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 2 Aug 1998 23:09:13 +0000 Subject: [PATCH] trace mask made static variable git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/log.cpp b/src/common/log.cpp index 447f2feda9..02a7ac365f 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -212,7 +212,6 @@ wxLog::wxLog() 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() @@ -707,6 +706,7 @@ wxLogWindow::~wxLogWindow() // ---------------------------------------------------------------------------- wxLog *wxLog::ms_pLogger = NULL; bool wxLog::ms_bInitialized = FALSE; +wxTraceMask wxLog::ms_ulTraceMask = (wxTraceMask)0; // ---------------------------------------------------------------------------- // stdout error logging helper -- 2.45.2