buglets
This commit is contained in:
parent
5dc3cf9816
commit
f3a923d478
|
@ -39,7 +39,7 @@
|
||||||
static void formatAt( OUTPUTFORMATTER* out, const POINT& aPos, ANGLE aAngle, int indent=0 )
|
static void formatAt( OUTPUTFORMATTER* out, const POINT& aPos, ANGLE aAngle, int indent=0 )
|
||||||
throw( IO_ERROR )
|
throw( IO_ERROR )
|
||||||
{
|
{
|
||||||
out->Print( indent, aAngle==0.0 ? "(at %.6g %.6g %.6g)" : "(at %.6g %.6g)",
|
out->Print( indent, aAngle!=0.0 ? "(at %.6g %.6g %.6g)" : "(at %.6g %.6g)",
|
||||||
InternalToLogical( aPos.x ), InternalToLogical( aPos.y ),
|
InternalToLogical( aPos.x ), InternalToLogical( aPos.y ),
|
||||||
double( aAngle ) );
|
double( aAngle ) );
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,6 @@
|
||||||
#include <sch_lib_table.h>
|
#include <sch_lib_table.h>
|
||||||
#include <sch_lpid.h>
|
#include <sch_lpid.h>
|
||||||
|
|
||||||
#include <macros.h> // FROM_UTF8()
|
|
||||||
|
|
||||||
using namespace SCH;
|
using namespace SCH;
|
||||||
using namespace PR;
|
using namespace PR;
|
||||||
|
@ -1197,7 +1196,7 @@ void SWEET_PARSER::parseText( GR_TEXT* me )
|
||||||
Duplicate( tok );
|
Duplicate( tok );
|
||||||
sawText = true;
|
sawText = true;
|
||||||
|
|
||||||
me->text = FROM_UTF8( CurText() );
|
me->text = wxString::FromUTF8( CurText() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue