From 46eaa42260c5bbb5141a8dbfe28df3ff7aa37cad Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 2 Aug 1998 23:07:41 +0000 Subject: [PATCH] trace mask made static variable (and corresponding accessors static functions) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@413 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/log.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/wx/log.h b/include/wx/log.h index eba734fa24..e6277c84d9 100644 --- a/include/wx/log.h +++ b/include/wx/log.h @@ -89,7 +89,7 @@ public: // NB: the string is not copied, so it's lifetime must be long enough! void SetTimeStampFormat(const char *szTF) { m_szTimeFormat = szTF; } // trace mask (see wxTraceXXX constants for details) - void SetTraceMask(wxTraceMask ulMask) { m_ulTraceMask = ulMask; } + static void SetTraceMask(wxTraceMask ulMask) { ms_ulTraceMask = ulMask; } // accessors // gets the verbose status @@ -97,7 +97,7 @@ public: // get current time format const char *GetTimeStampFormat() const { return m_szTimeFormat; } // get trace mask - wxTraceMask GetTraceMask() const { return m_ulTraceMask; } + static wxTraceMask GetTraceMask() { return ms_ulTraceMask; } // make dtor virtual for all derived classes virtual ~wxLog() { } @@ -107,7 +107,6 @@ protected: bool m_bVerbose; // FALSE => ignore LogInfo messages const char *m_szTimeFormat; // format for strftime() - wxTraceMask m_ulTraceMask; // controls wxLogTrace behaviour // the logging functions that can be overriden // default DoLog() prepends the time stamp and a prefix corresponding @@ -120,8 +119,9 @@ protected: private: // static variables // ---------------- - static wxLog *ms_pLogger; // currently active log sink - static bool ms_bInitialized; // any log targets created? + static wxLog *ms_pLogger; // currently active log sink + static bool ms_bInitialized; // any log targets created? + static wxTraceMask ms_ulTraceMask; // controls wxLogTrace behaviour }; // ---------------------------------------------------------------------------- -- 2.45.2