From f63e248ec193ec32294844ce28fb287d9b80d06a Mon Sep 17 00:00:00 2001 From: Mattia Barbon Date: Thu, 20 Sep 2001 22:07:21 +0000 Subject: [PATCH] Unicode compilation fixes. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11656 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/univ/theme.h | 2 +- src/msw/helpbest.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/univ/theme.h b/include/wx/univ/theme.h index 0c571dd95b..e9a05fe408 100644 --- a/include/wx/univ/theme.h +++ b/include/wx/univ/theme.h @@ -120,7 +120,7 @@ struct WXDLLEXPORT wxThemeInfo bool wxThemeUse##themename = TRUE; \ wxTheme *wxCtorFor##themename() { return new classname; } \ wxThemeInfo classname::ms_info##themename(wxCtorFor##themename, \ - #themename, themedesc) + wxT( #themename ), themedesc) #endif // _WX_UNIV_THEME_H_ diff --git a/src/msw/helpbest.cpp b/src/msw/helpbest.cpp index 8de443a243..ec408ee30e 100644 --- a/src/msw/helpbest.cpp +++ b/src/msw/helpbest.cpp @@ -92,7 +92,7 @@ wxString wxBestHelpController::GetValidFilename( const wxString& filename ) cons break; default: // we CAN'T get here - wxFAIL_MSG( "wxBestHelpController: Must call Initialize, first!" ); + wxFAIL_MSG( wxT("wxBestHelpController: Must call Initialize, first!") ); return wxEmptyString; break; } -- 2.47.2