Unicode compilation fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44704 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2007-03-09 18:44:19 +00:00
parent 6e7b8bcbd7
commit ec5006bdc6
2 changed files with 6 additions and 6 deletions

View File

@@ -267,7 +267,7 @@ bool wxBitmap::LoadFile(const wxString &name, wxBitmapType type)
wxImage image;
if ( !image.LoadFile(name, type) || !image.Ok() )
{
wxLogError("no bitmap handler for type %d defined.", type);
wxLogError(_("No bitmap handler for type %d defined."), type);
return false;
}
else
@@ -301,7 +301,7 @@ bool wxBitmap::SaveFile(const wxString& filename, wxBitmapType type, const wxPal
return image.SaveFile(filename, type);
else
{
wxLogError("no bitmap handler for type %d defined.", type);
wxLogError(_("No bitmap handler for type %d defined."), type);
return false;
}
}