src/gui_editactions.cc

changeset 590
7aec744ce97b
parent 587
507e5d5c348c
child 595
b6b39c1721a1
--- a/src/gui_editactions.cc	Mon Dec 23 11:57:32 2013 +0200
+++ b/src/gui_editactions.cc	Mon Dec 23 16:10:36 2013 +0200
@@ -358,9 +358,9 @@
 // -----------------------------------------------------------------------------
 void doMoveObjects (vertex vect)
 {	// Apply the grid values
-	vect[X] *= currentGrid().confs[Grid::X]->value;
-	vect[Y] *= currentGrid().confs[Grid::Y]->value;
-	vect[Z] *= currentGrid().confs[Grid::Z]->value;
+	vect[X] *= *currentGrid().confs[Grid::X];
+	vect[Y] *= *currentGrid().confs[Grid::Y];
+	vect[Z] *= *currentGrid().confs[Grid::Z];
 
 	for (LDObject* obj : selection())
 	{	obj->move (vect);
@@ -423,7 +423,7 @@
 {	QList<LDObject*> sel = selection();
 	QList<vertex*> queue;
 	const vertex rotpoint = rotPoint (sel);
-	const double angle = (pi * currentGrid().confs[Grid::Angle]->value) / 180,
+	const double angle = (pi * *currentGrid().confs[Grid::Angle]) / 180,
 				 cosangle = cos (angle),
 				 sinangle = sin (angle);
 

mercurial