Fix bogus format string replacement type.
Fixes https://gitlab.com/kicad/code/kicad/issues/13426
This commit is contained in:
parent
bc50f537ff
commit
22144ae0d0
|
@ -77,7 +77,7 @@ void SCH_NAVIGATE_TOOL::HypertextCommand( const wxString& href )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
m_frame->ShowInfoBarError( wxString::Format( _( "Page '%d' not found." ), destPage ) );
|
m_frame->ShowInfoBarError( wxString::Format( _( "Page '%s' not found." ), destPage ) );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue