One more fix for LIB_BEZIER::Save()
This commit is contained in:
parent
aeac415599
commit
57619956e8
|
@ -54,9 +54,7 @@ LIB_BEZIER::LIB_BEZIER( LIB_PART* aParent ) :
|
|||
|
||||
bool LIB_BEZIER::Save( OUTPUTFORMATTER& aFormatter )
|
||||
{
|
||||
int ccount = GetCornerCount();
|
||||
|
||||
aFormatter.Print( 0, "B %d %d %d %d", ccount, m_Unit, m_Convert, m_Width );
|
||||
aFormatter.Print( 0, "B %lu %d %d %d", m_BezierPoints.size(), m_Unit, m_Convert, m_Width );
|
||||
|
||||
for( const auto& pt : m_BezierPoints )
|
||||
aFormatter.Print( 0, " %d %d", pt.x, pt.y );
|
||||
|
|
Loading…
Reference in New Issue