diff options
Diffstat (limited to 'src/knotholder.cpp')
| -rw-r--r-- | src/knotholder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/knotholder.cpp b/src/knotholder.cpp index f7935c7c3..0cb9fc423 100644 --- a/src/knotholder.cpp +++ b/src/knotholder.cpp @@ -78,7 +78,7 @@ KnotHolder::~KnotHolder() { void KnotHolder::update_knots() { - NR::Matrix const i2d(sp_item_i2d_affine(item)); + Geom::Matrix const i2d(sp_item_i2d_affine(item)); for(std::list<KnotHolderEntity *>::iterator i = entity.begin(); i != entity.end(); ++i) { KnotHolderEntity *e = *i; @@ -139,7 +139,7 @@ KnotHolder::knot_moved_handler(SPKnot *knot, Geom::Point const &p, guint state) for(std::list<KnotHolderEntity *>::iterator i = this->entity.begin(); i != this->entity.end(); ++i) { KnotHolderEntity *e = *i; if (e->knot == knot) { - NR::Point const q = p * sp_item_i2d_affine(item).inverse(); + Geom::Point const q = p * sp_item_i2d_affine(item).inverse(); e->knot_set(q, e->knot->drag_origin * sp_item_i2d_affine(item).inverse(), state); break; } |
