- wxT() is a macro which can be used with character and string literals (in other
- words, @c 'x' or @c "foo") to automatically convert them to Unicode in
- Unicode build configuration. Please see the
- @ref overview_unicode "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:
-
- @code
- #ifdef UNICODE
- #define wxT(x) L ## x
- #else // !Unicode
- #define wxT(x) x
- #endif
- @endcode
-*/
-wxChar wxT(char ch);
-const wxChar* wxT(const char* s);
-//@}
+ This macro can be used with character and string literals (in other words,
+ @c 'x' or @c "foo") to automatically convert them to Unicode in Unicode
+ builds of wxWidgets. This macro is simply returns the value passed to it
+ without changes in ASCII build. In fact, its definition is: