From: Vadim Zeitlin Date: Wed, 14 Feb 2007 16:12:12 +0000 (+0000) Subject: fix warning about unused TRACE_MASK variable in release builds X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/744b73167b959b4084c4a9a746cd2e92e3d27beb fix warning about unused TRACE_MASK variable in release builds git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44504 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/stdpaths.cpp b/src/msw/stdpaths.cpp index 96fe3e23e7..37c0c9748a 100644 --- a/src/msw/stdpaths.cpp +++ b/src/msw/stdpaths.cpp @@ -50,7 +50,7 @@ typedef HRESULT (WINAPI *SHGetSpecialFolderPath_t)(HWND, LPTSTR, int, BOOL); // ---------------------------------------------------------------------------- // used in our wxLogTrace messages -static const wxChar *TRACE_MASK = _T("stdpaths"); +#define TRACE_MASK _T("stdpaths") #ifndef CSIDL_APPDATA #define CSIDL_APPDATA 0x001a