fix I18n issue (empty string)

This commit is contained in:
jean-pierre charras 2017-03-08 18:49:53 +01:00
parent a73abbfc31
commit a592832886
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ void DRC::addMarkerToPcb( MARKER_PCB* aMarker )
{
BOARD_COMMIT commit ( m_pcbEditorFrame );
commit.Add( aMarker );
commit.Push( _(""), false );
commit.Push( wxEmptyString, false );
}
void DRC::DestroyDRCDialog( int aReason )