Code

fix pasting style after copying a text span
[inkscape.git] / src / object-snapper.h
index 74bdec0cef3bad0a2ac04385943b7ea0ce7c6c57..9a6978d4705e5c305d2b8f99ea4e1aeabaae7217 100644 (file)
@@ -86,7 +86,7 @@ private:
     //store some lists of candidates, points and paths, so we don't have to rebuild them for each point we want to snap
     std::vector<SnapCandidate> *_candidates;
     std::vector<Geom::Point> *_points_to_snap_to;
-    std::vector<Geom::PathVector*> *_paths_to_snap_to;
+    std::vector<std::pair<Geom::PathVector*, SnapTargetType> > *_paths_to_snap_to;
 
     void _findCandidates(SPObject* parent,
                        std::vector<SPItem const *> const *it,