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:
@@ -58,7 +58,7 @@ wxFont wxSystemSettingsNative::GetFont(wxSystemFont index)
|
||||
}
|
||||
|
||||
default:
|
||||
wxFAIL_MSG( _T("unknown font type") );
|
||||
wxFAIL_MSG( "unknown font type" );
|
||||
return wxNullFont;
|
||||
}
|
||||
}
|
||||
@@ -85,7 +85,7 @@ int wxSystemSettingsNative::GetMetric(wxSystemMetric index,
|
||||
#endif
|
||||
|
||||
default:
|
||||
wxFAIL_MSG( _T("unsupported metric") );
|
||||
wxFAIL_MSG( "unsupported metric" );
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
@@ -100,7 +100,7 @@ bool wxSystemSettingsNative::HasFeature(wxSystemFeature index)
|
||||
return false;
|
||||
|
||||
default:
|
||||
wxFAIL_MSG( _T("unknown feature") );
|
||||
wxFAIL_MSG( "unknown feature" );
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user