don't define TRACE_MASK if it's not used (fixes gcc warning)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@51772 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-02-13 22:43:31 +00:00
parent 6cdb1386bd
commit 53b974d86c

View File

@@ -50,7 +50,9 @@ typedef HRESULT (WINAPI *SHGetSpecialFolderPath_t)(HWND, LPTSTR, int, BOOL);
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// used in our wxLogTrace messages // used in our wxLogTrace messages
static const wxChar *TRACE_MASK = _T("stdpaths"); #if wxUSE_LOG && wxUSE_LOG_DEBUG
static const wxChar *TRACE_MASK = _T("stdpaths");
#endif
#ifndef CSIDL_APPDATA #ifndef CSIDL_APPDATA
#define CSIDL_APPDATA 0x001a #define CSIDL_APPDATA 0x001a