From e2ba6da886f69fc110b8050adf2ee5924ff31156 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Mon, 2 Oct 2017 08:49:25 +0200 Subject: [PATCH] Fixed an empty msgid warning (gettext) --- pcbnew/tools/edit_tool.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pcbnew/tools/edit_tool.cpp b/pcbnew/tools/edit_tool.cpp index a481be0a57..f975950abc 100644 --- a/pcbnew/tools/edit_tool.cpp +++ b/pcbnew/tools/edit_tool.cpp @@ -1230,7 +1230,6 @@ void EDIT_TOOL::setTransitions() Go( &EDIT_TOOL::MeasureTool, PCB_ACTIONS::measureTool.MakeEvent() ); Go( &EDIT_TOOL::copyToClipboard, PCB_ACTIONS::copyToClipboard.MakeEvent() ); Go( &EDIT_TOOL::cutToClipboard, PCB_ACTIONS::cutToClipboard.MakeEvent() ); - } @@ -1295,6 +1294,7 @@ int EDIT_TOOL::editFootprintInFpEditor( const TOOL_EVENT& aEvent ) return 0; } + bool EDIT_TOOL::pickCopyReferencePoint( VECTOR2I& aP ) { PICKER_TOOL* picker = m_toolMgr->GetTool(); @@ -1312,6 +1312,7 @@ bool EDIT_TOOL::pickCopyReferencePoint( VECTOR2I& aP ) return true; } + int EDIT_TOOL::copyToClipboard( const TOOL_EVENT& aEvent ) { CLIPBOARD_IO io; @@ -1319,8 +1320,7 @@ int EDIT_TOOL::copyToClipboard( const TOOL_EVENT& aEvent ) Activate(); - auto item1 = MSG_PANEL_ITEM( _(""), - _("Select reference point for the block being copied..."), + auto item1 = MSG_PANEL_ITEM( "", _( "Select reference point for the block being copied..." ), COLOR4D::BLACK ); std::vector msgItems = { item1 }; @@ -1344,6 +1344,7 @@ int EDIT_TOOL::copyToClipboard( const TOOL_EVENT& aEvent ) return 0; } + int EDIT_TOOL::cutToClipboard( const TOOL_EVENT& aEvent ) { copyToClipboard( aEvent );