From ad1a929404f0263d45e3750cf881832d0f634e6c Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Sat, 27 Jan 2024 09:06:03 +0100 Subject: [PATCH] Do not mark an empty string as translatable It is not accepted by our tools --- eeschema/tools/sch_edit_tool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/tools/sch_edit_tool.cpp b/eeschema/tools/sch_edit_tool.cpp index 1115ce4953..4bd49a554a 100644 --- a/eeschema/tools/sch_edit_tool.cpp +++ b/eeschema/tools/sch_edit_tool.cpp @@ -2431,7 +2431,7 @@ int SCH_EDIT_TOOL::CleanupSheetPins( const TOOL_EVENT& aEvent ) updateItem( sheet, true ); - commit.Push( _( "" ) ); + commit.Push( wxT( "" ) ); if( selection.IsHover() ) m_toolMgr->RunAction( EE_ACTIONS::clearSelection );