removed translations where not needed (backported to 2.4)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18357 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -333,14 +333,11 @@ void *wxDllLoader::GetSymbol(wxDllType dllHandle, const wxString &name, bool *su
|
||||
|
||||
if ( !symbol )
|
||||
{
|
||||
wxString msg(_("wxDllLoader failed to GetSymbol '%s'"));
|
||||
|
||||
#ifdef HAVE_DLERROR
|
||||
const wxChar *err = dlerror();
|
||||
if( err )
|
||||
{
|
||||
failed = TRUE;
|
||||
wxLogError( msg, err );
|
||||
wxLogError(wxT("%s"), err);
|
||||
}
|
||||
#else
|
||||
failed = TRUE;
|
||||
|
||||
@@ -279,7 +279,6 @@ void *wxDynamicLibrary::GetSymbol(const wxString &name, bool *success) const
|
||||
|
||||
if ( !symbol )
|
||||
{
|
||||
wxString msg(_("wxDynamicLibrary failed to GetSymbol '%s'"));
|
||||
#if defined(HAVE_DLERROR) && !defined(__EMX__)
|
||||
|
||||
#if wxUSE_UNICODE
|
||||
@@ -291,8 +290,7 @@ void *wxDynamicLibrary::GetSymbol(const wxString &name, bool *success) const
|
||||
|
||||
if( err )
|
||||
{
|
||||
failed = TRUE;
|
||||
wxLogError( msg, err );
|
||||
wxLogError(wxT("%s"), err);
|
||||
}
|
||||
#else
|
||||
failed = TRUE;
|
||||
|
||||
@@ -370,9 +370,9 @@ void wxPreviewControlBar::OnGoto(void)
|
||||
wxString strPrompt;
|
||||
wxString strPage;
|
||||
|
||||
strPrompt.Printf( _("%d...%d"),
|
||||
strPrompt.Printf( wxT("%d...%d"),
|
||||
preview->GetMinPage(), preview->GetMaxPage());
|
||||
strPage.Printf( _("%d"), preview->GetCurrentPage() );
|
||||
strPage.Printf( wxT("%d"), preview->GetCurrentPage() );
|
||||
|
||||
strPage =
|
||||
wxGetTextFromUser( strPrompt, _("Goto Page"), strPage);
|
||||
|
||||
Reference in New Issue
Block a user