From 7e7d3004fb69396faff62451ce6ca830cec86f47 Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Sun, 12 Nov 2017 11:38:08 -0500 Subject: [PATCH] Fix UI string typo in rescue dialog error message. --- eeschema/dialogs/dialog_rescue_each.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eeschema/dialogs/dialog_rescue_each.cpp b/eeschema/dialogs/dialog_rescue_each.cpp index c2dbf940e7..bc34d2cbfc 100644 --- a/eeschema/dialogs/dialog_rescue_each.cpp +++ b/eeschema/dialogs/dialog_rescue_each.cpp @@ -2,7 +2,7 @@ * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2015-2016 Chris Pavlina - * Copyright (C) 2015-2017 Kicad Developers, see AUTHORS.txt for contributors. + * Copyright (C) 2015-2017 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -208,7 +208,7 @@ void DIALOG_RESCUE_EACH::OnHandleLibraryPreviewRepaint( wxPaintEvent& aRepaintEv void DIALOG_RESCUE_EACH::OnDialogResize( wxSizeEvent& aSizeEvent ) { - // Placeholer - I was previously doing some extra reflow here. + // Placeholder - I was previously doing some extra reflow here. DIALOG_RESCUE_EACH_BASE::OnDialogResize( aSizeEvent ); } @@ -294,7 +294,7 @@ void DIALOG_RESCUE_EACH::OnNeverShowClick( wxCommandEvent& aEvent ) "No changes will be made.\n\n" "This setting can be changed from the \"Symbol Libraries\" dialog,\n" "and the tool can be activated manually from the \"Tools\" menu." ), - _( "Rescue Symbolss" ), wxYES_NO | wxNO_DEFAULT | wxICON_QUESTION ); + _( "Rescue Symbols" ), wxYES_NO | wxNO_DEFAULT | wxICON_QUESTION ); int resp = dlg.ShowModal (); if( resp == wxID_YES )