Code

now that selection description includes style (filtered, clipped), we need to update...
[inkscape.git] / src / sp-item-update-cns.cpp
index 44b26d45f6e2998689f774781216d08b142dbb9c..f7329bd45a2096907bba6349b653cbb92e1c734f 100644 (file)
@@ -9,8 +9,8 @@ using std::vector;
 
 void sp_item_update_cns(SPItem &item, SPDesktop const &desktop)
 {
-    vector<NR::Point> snappoints;
-    sp_item_snappoints(&item, true, SnapPointsIter(snappoints));
+    std::vector<Geom::Point> snappoints;
+    sp_item_snappoints(&item, SnapPointsIter(snappoints), NULL);
     /* TODO: Implement the ordering. */
     vector<SPGuideConstraint> found_cns;
     satisfied_guide_cns(desktop, snappoints, found_cns);