Those wxTRACE_* string constants appears to need wxT()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5214 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
eda22ec3a2
commit
08298395b2
@ -67,13 +67,13 @@ enum
|
||||
// discarded unless the string "foo" has been added to the list of allowed
|
||||
// ones with AddTraceMask()
|
||||
|
||||
#define wxTRACE_MemAlloc "memalloc" // trace memory allocation (new/delete)
|
||||
#define wxTRACE_Messages "messages" // trace window messages/X callbacks
|
||||
#define wxTRACE_ResAlloc "resalloc" // trace GDI resource allocation
|
||||
#define wxTRACE_RefCount "refcount" // trace various ref counting operations
|
||||
#define wxTRACE_MemAlloc wxT("memalloc") // trace memory allocation (new/delete)
|
||||
#define wxTRACE_Messages wxT("messages") // trace window messages/X callbacks
|
||||
#define wxTRACE_ResAlloc wxT("resalloc") // trace GDI resource allocation
|
||||
#define wxTRACE_RefCount wxT("refcount") // trace various ref counting operations
|
||||
|
||||
#ifdef __WXMSW__
|
||||
#define wxTRACE_OleCalls "ole" // OLE interface calls
|
||||
#define wxTRACE_OleCalls wxT("ole") // OLE interface calls
|
||||
#endif
|
||||
|
||||
// the trace masks have been superceded by symbolic trace constants, they're
|
||||
|
Loading…
Reference in New Issue
Block a user