use wxSTRINGIZE_T instead of _T(wxSTRINGIZE())

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41694 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-10-08 11:11:48 +00:00
parent 1a1ecce631
commit affebd0a6e

View File

@ -93,12 +93,12 @@ wxThemeInfo::wxThemeInfo(Constructor c,
{ {
nameDefTheme = p; nameDefTheme = p;
} }
#ifdef wxUNIV_DEFAULT_THEME
else // use native theme by default else // use native theme by default
{ {
#ifdef wxUNIV_DEFAULT_THEME nameDefTheme = wxSTRINGIZE_T(wxUNIV_DEFAULT_THEME);
nameDefTheme = _T(wxSTRINGIZE(wxUNIV_DEFAULT_THEME));
#endif
} }
#endif // wxUNIV_DEFAULT_THEME
wxTheme *theme = Create(nameDefTheme); wxTheme *theme = Create(nameDefTheme);