Hi! Quoting from the docs: "wxT() is a macro which can be used with character and string literals (in other words, 'x' or "foo") to automatically convert them to Unicode in Unicode build configuration. Please see the Unicode overview for more information.
This macro is simply returns the value passed to it without changes in ASCII build. In fact, its definition is:
#ifdef UNICODE #define wxT(x) L ## x #else // !Unicode #define wxT(x) x #endif"
upCASE ----------------------------------- If it was hard to write, it should be hard to read!- Do. Or do not. There is no try! |