Make a debug message not translatable.

This commit is contained in:
jean-pierre charras 2017-02-10 16:24:51 +01:00
parent 899fe08f20
commit 9d43817db8
1 changed files with 1 additions and 2 deletions

View File

@ -38,8 +38,7 @@ bool TOOL_EVT_UTILS::IsRotateToolEvt( const TOOL_EVENT& aEvt )
int TOOL_EVT_UTILS::GetEventRotationAngle( const PCB_BASE_EDIT_FRAME& aFrame,
const TOOL_EVENT& aEvt )
{
wxASSERT_MSG( IsRotateToolEvt( aEvt ),
_( "Expected rotation event" ) );
wxASSERT_MSG( IsRotateToolEvt( aEvt ), "Expected rotation event" );
const int rotAngle = aFrame.GetRotationAngle();
const int angleMultiplier = aEvt.Parameter<intptr_t>();