summaryrefslogtreecommitdiffstats
path: root/src/knotholder.cpp
diff options
context:
space:
mode:
authorAndrew Higginson <at.higginson@gmail.com>2011-12-27 21:04:47 +0000
committerAndrew <at.higginson@gmail.com>2011-12-27 21:04:47 +0000
commit80960b623a99aae1402ab651b2974ef544ed3b03 (patch)
treeba49d42c2789e9e11f805e2d5263e10f9fedeef8 /src/knotholder.cpp
parenttry to fix bug (diff)
parentGDL: Cherry-pick upstream patch 73852 (2011-03-23) - Add missing return value. (diff)
downloadinkscape-80960b623a99aae1402ab651b2974ef544ed3b03.tar.gz
inkscape-80960b623a99aae1402ab651b2974ef544ed3b03.zip
merged with trunk so I can build again...
(bzr r10092.1.36)
Diffstat (limited to 'src/knotholder.cpp')
-rw-r--r--src/knotholder.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/knotholder.cpp b/src/knotholder.cpp
index 59059c2a8..10d03982c 100644
--- a/src/knotholder.cpp
+++ b/src/knotholder.cpp
@@ -1,5 +1,5 @@
/*
- * Container for SPKnot visual handles
+ * Container for SPKnot visual handles.
*
* Authors:
* Mitsuru Oka <oka326@parkcity.ne.jp>
@@ -85,8 +85,6 @@ KnotHolder::~KnotHolder() {
void
KnotHolder::update_knots()
{
- Geom::Affine const i2d(item->i2d_affine());
-
for(std::list<KnotHolderEntity *>::iterator i = entity.begin(); i != entity.end(); ++i) {
KnotHolderEntity *e = *i;
e->update_knot();
@@ -94,7 +92,7 @@ KnotHolder::update_knots()
}
/**
- * \brief Returns true if at least one of the KnotHolderEntities has the mouse hovering above it
+ * Returns true if at least one of the KnotHolderEntities has the mouse hovering above it.
*/
bool KnotHolder::knot_mouseover()
{
@@ -165,8 +163,8 @@ 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) {
- Geom::Point const q = p * item->i2d_affine().inverse();
- e->knot_set(q, e->knot->drag_origin * item->i2d_affine().inverse(), state);
+ Geom::Point const q = p * item->i2dt_affine().inverse();
+ e->knot_set(q, e->knot->drag_origin * item->i2dt_affine().inverse(), state);
break;
}
}