From 2b5ea7812f67c5b9cc4413adbe2748d34b5de9be Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Wed, 3 Nov 2021 18:18:35 +0000 Subject: [PATCH] Fix another case of the double-quote in wxString::Format problem. Yes, sadly it's a string change and we're past string freeze. However, without the fix you get no string at all. --- common/eda_base_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/eda_base_frame.cpp b/common/eda_base_frame.cpp index 97865070ac..7782ed2fca 100644 --- a/common/eda_base_frame.cpp +++ b/common/eda_base_frame.cpp @@ -1085,7 +1085,7 @@ void EDA_BASE_FRAME::CheckForAutoSaveFile( const wxFileName& aFileName ) wxString msg = wxString::Format( _( "Well this is potentially embarrassing!\n" "It appears that the last time you were editing the file\n" - "\"%s\"\n" + "%s\n" "it was not saved properly. Do you wish to restore the last saved edits you made?" ), aFileName.GetFullName() );