Some more wxS

This commit is contained in:
Marek Roszko
2023-01-16 19:07:50 -05:00
parent 167e430fd9
commit ac94995f70
26 changed files with 135 additions and 135 deletions
+2 -2
View File
@@ -490,9 +490,9 @@ wxString BM2CMP_FRAME::FormatOutputSize( double aSize )
wxString text;
if( getUnitFromSelection() == EDA_UNITS::MILLIMETRES )
text.Printf( "%.1f", aSize );
text.Printf( wxS( "%.1f" ), aSize );
else if( getUnitFromSelection() == EDA_UNITS::INCHES )
text.Printf( "%.2f", aSize );
text.Printf( wxS( "%.2f" ), aSize );
else
text.Printf( wxT( "%d" ), KiROUND( aSize ) );