diff options
| author | Diederik van Lierop <mail@diedenrezi.nl> | 2008-04-11 08:03:13 +0000 |
|---|---|---|
| committer | dvlierop2 <dvlierop2@users.sourceforge.net> | 2008-04-11 08:03:13 +0000 |
| commit | b95db4b4d6c41793e804a235a869cb5107d35b22 (patch) | |
| tree | 82028b14024cfbb8a33353017ef6fcd90793ff47 /src/seltrans.h | |
| parent | Cmake: Correct INKSCAPE_LIBDIR value in config.h.cmake, to correct compiling ... (diff) | |
| download | inkscape-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 '')
| -rw-r--r-- | src/seltrans.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/seltrans.h b/src/seltrans.h index 00d7fb1c4..d06e05276 100644 --- a/src/seltrans.h +++ b/src/seltrans.h @@ -110,8 +110,10 @@ private: SPDesktop *_desktop; - std::vector<std::pair<SPItem *, NR::Matrix> > _items; - std::vector<std::pair<SPItem *, NR::Point> > _items_centers; + std::vector<SPItem *> _items; + std::vector<SPItem const *> _items_const; + std::vector<NR::Matrix> _items_affines; + std::vector<NR::Point> _items_centers; std::vector<NR::Point> _snap_points; std::vector<NR::Point> _bbox_points; |
