summaryrefslogtreecommitdiffstats
path: root/src/sp-item-update-cns.cpp
diff options
context:
space:
mode:
authorDiederik van Lierop <mail@diedenrezi.nl>2009-02-20 21:49:07 +0000
committerdvlierop2 <dvlierop2@users.sourceforge.net>2009-02-20 21:49:07 +0000
commit7860d701fd23d8e5f03086c249d30759732f07fd (patch)
treec3b8f351366407783eb5c96ba4fcdbbc7a132da9 /src/sp-item-update-cns.cpp
parentSome filters and extensions updates (diff)
downloadinkscape-7860d701fd23d8e5f03086c249d30759732f07fd.tar.gz
inkscape-7860d701fd23d8e5f03086c249d30759732f07fd.zip
The snap indicator's tooltip now displays "A to B", whereas before it only displayed "B".
(bzr r7335)
Diffstat (limited to 'src/sp-item-update-cns.cpp')
-rw-r--r--src/sp-item-update-cns.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-item-update-cns.cpp b/src/sp-item-update-cns.cpp
index f7329bd45..bebd65021 100644
--- a/src/sp-item-update-cns.cpp
+++ b/src/sp-item-update-cns.cpp
@@ -9,8 +9,8 @@ using std::vector;
void sp_item_update_cns(SPItem &item, SPDesktop const &desktop)
{
- std::vector<Geom::Point> snappoints;
- sp_item_snappoints(&item, SnapPointsIter(snappoints), NULL);
+ SnapPointsWithType snappoints;
+ sp_item_snappoints(&item, false, snappoints, NULL);
/* TODO: Implement the ordering. */
vector<SPGuideConstraint> found_cns;
satisfied_guide_cns(desktop, snappoints, found_cns);