Unicode compilation fixes for wxX11

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23038 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-08-20 08:39:47 +00:00
parent c6441a0d74
commit 54385bdb3f
8 changed files with 40 additions and 41 deletions

View File

@@ -125,7 +125,7 @@ wxCursor::wxCursor(const char bits[], int width, int height,
int hotSpotX, int hotSpotY,
const char maskBits[], wxColour *fg, wxColour *bg)
{
wxFAIL_MSG( "wxCursor creation from bits not yet implemented" );
wxFAIL_MSG( wxT("wxCursor creation from bits not yet implemented") );
}
@@ -137,7 +137,7 @@ wxCursor::wxCursor( const wxCursor &cursor )
#if wxUSE_IMAGE
wxCursor::wxCursor( const wxImage & image )
{
wxFAIL_MSG( "wxCursor creation from wxImage not yet implemented" );
wxFAIL_MSG( wxT("wxCursor creation from wxImage not yet implemented") );
}
#endif