From dad8c9821b980dfada1854083fe16499e09c30ad Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 15 Jul 2019 10:33:03 +0200 Subject: [PATCH] Fix a minor compil warning. --- eeschema/dialogs/panel_sym_lib_table.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eeschema/dialogs/panel_sym_lib_table.cpp b/eeschema/dialogs/panel_sym_lib_table.cpp index 74ba10353f..ace386de37 100644 --- a/eeschema/dialogs/panel_sym_lib_table.cpp +++ b/eeschema/dialogs/panel_sym_lib_table.cpp @@ -726,9 +726,9 @@ void InvokeSchEditSymbolLibTable( KIWAY* aKiway, wxWindow *aParent ) if( libEditor->HasLibModifications() ) { - wxString msg = _( "Modifications have been made to one or more symbol libraries.\n" - "Changes must be saved or discarded before the symbol library " - "table can be modified." ); + msg = _( "Modifications have been made to one or more symbol libraries.\n" + "Changes must be saved or discarded before the symbol library " + "table can be modified." ); switch( UnsavedChangesDialog( aParent, msg ) ) {