summaryrefslogtreecommitdiffstats
path: root/src/snapper.h
diff options
context:
space:
mode:
authorDiederik van Lierop <mail@diedenrezi.nl>2008-04-11 08:03:13 +0000
committerdvlierop2 <dvlierop2@users.sourceforge.net>2008-04-11 08:03:13 +0000
commitb95db4b4d6c41793e804a235a869cb5107d35b22 (patch)
tree82028b14024cfbb8a33353017ef6fcd90793ff47 /src/snapper.h
parentCmake: Correct INKSCAPE_LIBDIR value in config.h.cmake, to correct compiling ... (diff)
downloadinkscape-b95db4b4d6c41793e804a235a869cb5107d35b22.tar.gz
inkscape-b95db4b4d6c41793e804a235a869cb5107d35b22.zip
Refactor snapping mechanisms: in seltrans.cpp, a GSList was converted to a std::list in four different places. Now this is handled in only one place
(bzr r5407)
Diffstat (limited to 'src/snapper.h')
-rw-r--r--src/snapper.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/snapper.h b/src/snapper.h
index 508ba7b9a..cad4200ab 100644
--- a/src/snapper.h
+++ b/src/snapper.h
@@ -75,7 +75,7 @@ public:
NR::Point const &p,
bool const &first_point,
std::vector<NR::Point> &points_to_snap,
- std::list<SPItem const *> const &it,
+ std::vector<SPItem const *> const &it,
std::vector<NR::Point> *unselected_nodes) const;
class ConstraintLine
@@ -117,7 +117,7 @@ public:
bool const &first_point,
std::vector<NR::Point> &points_to_snap,
ConstraintLine const &c,
- std::list<SPItem const *> const &it) const;
+ std::vector<SPItem const *> const &it) const;
protected:
SPNamedView const *_named_view;
@@ -144,7 +144,7 @@ private:
NR::Point const &p,
bool const &first_point,
std::vector<NR::Point> &points_to_snap,
- std::list<SPItem const *> const &it,
+ std::vector<SPItem const *> const &it,
std::vector<NR::Point> *unselected_nodes) const = 0;
/**
@@ -163,7 +163,7 @@ private:
bool const &first_point,
std::vector<NR::Point> &points_to_snap,
ConstraintLine const &c,
- std::list<SPItem const *> const &it) const = 0;
+ std::vector<SPItem const *> const &it) const = 0;
};
}