src/ldtypes.cpp

changeset 540
0334789cb4d7
parent 539
72ad83a67165
child 541
0e38beeb050a
--- a/src/ldtypes.cpp	Thu Dec 05 23:20:50 2013 +0200
+++ b/src/ldtypes.cpp	Thu Dec 05 23:42:39 2013 +0200
@@ -104,7 +104,7 @@
 // =============================================================================
 // -----------------------------------------------------------------------------
 str LDSubfile::raw()
-{	str val = fmt ("1 %1 %2 ", getColor(), position());
+{	str val = fmt ("1 %1 %2 ", getColor(), getPosition());
 	val += getTransform().stringRep();
 	val += ' ';
 	val += getFileInfo()->getName();
@@ -299,7 +299,7 @@
 		case LDObject::Subfile:
 		{	LDSubfile* ref = static_cast<LDSubfile*> (obj);
 			matrix newMatrix = transform * ref->getTransform();
-			vertex newpos = ref->position();
+			vertex newpos = ref->getPosition();
 
 			newpos.transform (transform, pos);
 			ref->setPosition (newpos);
@@ -324,7 +324,7 @@
 for (LDObject * obj : objs)
 	{	// Set the parent now so we know what inlined this.
 		obj->setParent (this);
-		transformObject (obj, getTransform(), position(), getColor());
+		transformObject (obj, getTransform(), getPosition(), getColor());
 	}
 
 	return objs;
@@ -497,7 +497,7 @@
 // =============================================================================
 // -----------------------------------------------------------------------------
 void LDSubfile::move (vertex vect)
-{	setPosition (position() + vect);
+{	setPosition (getPosition() + vect);
 }
 
 // =============================================================================
@@ -691,11 +691,7 @@
 
 // =============================================================================
 // -----------------------------------------------------------------------------
-const int& LDObject::getColor() const
-{	return m_Color;
-}
-
-void LDObject::setColor (int val)
+void LDObject::setColor (const int& val)
 {	changeProperty (this, &m_Color, val);
 }
 

mercurial