_really_ fixed translation messages

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18240 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2002-12-15 12:38:15 +00:00
parent 42ed75321c
commit ee682a94cb
2 changed files with 2 additions and 7 deletions

View File

@@ -337,10 +337,7 @@ void *wxDllLoader::GetSymbol(wxDllType dllHandle, const wxString &name, bool *su
const wxChar *err = dlerror();
if( err )
{
failed = TRUE;
wxLogError( msg, err );
wxLogError(_("Couldn't find symbol '%s' in a dynamic library"),
err);
wxLogError(wxT("%s"), err);
}
#else
failed = TRUE;

View File

@@ -290,9 +290,7 @@ void *wxDynamicLibrary::GetSymbol(const wxString &name, bool *success) const
if( err )
{
failed = TRUE;
wxLogError(_("Couldn't find symbol '%s' in a dynamic library"),
err);
wxLogError(wxT("%s"), err);
}
#else
failed = TRUE;