]> git.saurik.com Git - wxWidgets.git/commitdiff
Correction for Unicode
authorJulian Smart <julian@anthemion.co.uk>
Mon, 25 Aug 2003 08:13:13 +0000 (08:13 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Mon, 25 Aug 2003 08:13:13 +0000 (08:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23190 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/filedlgg.cpp

index 41dc1131eda73cd89724083b23ea004230dc9787..837a72a9572ca22d8f2fc24131b011e8ce70b6d0 100644 (file)
@@ -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;