diff -r 928365840d0d -r 622c49e60348 src/addObjectDialog.cc --- a/src/addObjectDialog.cc Mon Jan 13 00:02:43 2014 +0200 +++ b/src/addObjectDialog.cc Mon Jan 13 10:07:39 2014 +0200 @@ -199,7 +199,7 @@ { for (int i = 0; i < coordCount / 3; ++i) for (int j = 0; j < 3; ++j) - dsb_coords[ (i * 3) + j]->setValue (obj->getVertex (i).coord (j)); + dsb_coords[ (i * 3) + j]->setValue (obj->getVertex (i).getCoordinate (j)); } break; @@ -239,7 +239,7 @@ defaultMatrix = mo->getTransform(); } - le_matrix->setText (defaultMatrix.stringRep()); + le_matrix->setText (defaultMatrix.toString()); layout->addWidget (lb_matrix, 4, 1); layout->addWidget (le_matrix, 4, 2, 1, 3); }