From: Julian Smart Date: Mon, 25 Aug 2003 08:13:13 +0000 (+0000) Subject: Correction for Unicode X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/88d6c988895a00cbcc14a9571909cccdfdee3db0 Correction for Unicode git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23190 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/filedlgg.cpp b/src/generic/filedlgg.cpp index 41dc1131ed..837a72a957 100644 --- a/src/generic/filedlgg.cpp +++ b/src/generic/filedlgg.cpp @@ -1204,8 +1204,7 @@ void wxGenericFileDialog::HandleAction( const wxString &fn ) wxFileExists( filename ) ) { wxString msg; - msg.Printf( _("File '%s' already exists, do you really want to " - "overwrite it?"), filename.c_str() ); + msg.Printf( _("File '%s' already exists, do you really want to overwrite it?"), filename.c_str() ); if (wxMessageBox(msg, _("Confirm"), wxYES_NO) != wxYES) return;