don't use _T() for literals in wxDFB, it uses UTF-8 build
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47543 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -116,7 +116,7 @@ wxPoint wxGetMousePosition()
|
||||
bool wxGetKeyState(wxKeyCode key)
|
||||
{
|
||||
wxASSERT_MSG(key != WXK_LBUTTON && key != WXK_RBUTTON && key != WXK_MBUTTON,
|
||||
_T("can't use wxGetKeyState() for mouse buttons"));
|
||||
"can't use wxGetKeyState() for mouse buttons");
|
||||
|
||||
return false; // FIXME
|
||||
}
|
||||
@@ -131,6 +131,6 @@ void wxBell()
|
||||
|
||||
int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
|
||||
{
|
||||
wxFAIL_MSG( _T("wxAddProcessCallback not implemented") );
|
||||
wxFAIL_MSG( "wxAddProcessCallback not implemented" );
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user