Fix a non ASCII7 string in a message. Only ASCII7 chars can be used in sources.
Non ASCII7 symbols are not allowed because the encoding is OS dependent.
This commit is contained in:
parent
0719b99ad8
commit
1e770f56a6
|
@ -22,13 +22,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <preview_items/preview_utils.h>
|
#include <preview_items/preview_utils.h>
|
||||||
|
|
||||||
#include <gal/graphics_abstraction_layer.h>
|
#include <gal/graphics_abstraction_layer.h>
|
||||||
|
|
||||||
#include <base_units.h>
|
#include <base_units.h>
|
||||||
|
|
||||||
using namespace KIGFX;
|
|
||||||
|
|
||||||
|
|
||||||
COLOR4D KIGFX::PREVIEW::PreviewOverlayDefaultColor()
|
COLOR4D KIGFX::PREVIEW::PreviewOverlayDefaultColor()
|
||||||
{
|
{
|
||||||
|
@ -65,7 +61,7 @@ static wxString getDimensionUnit( EDA_UNITS_T aUnits )
|
||||||
return _( "mm" );
|
return _( "mm" );
|
||||||
|
|
||||||
case DEGREES:
|
case DEGREES:
|
||||||
return _( "°" );
|
return _( "deg" );
|
||||||
|
|
||||||
case UNSCALED_UNITS:
|
case UNSCALED_UNITS:
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue