diff options
Diffstat (limited to 'src/selection.cpp')
| -rw-r--r-- | src/selection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selection.cpp b/src/selection.cpp index 412718994..45d8c43f2 100644 --- a/src/selection.cpp +++ b/src/selection.cpp @@ -478,7 +478,7 @@ std::vector<Inkscape::SnapCandidatePoint> Selection::getSnapPointsConvexHull(Sna if (!p.empty()) { std::vector<Inkscape::SnapCandidatePoint>::iterator i; Geom::RectHull cvh((p.front()).getPoint()); - for (i = p.begin(); i != p.end(); i++) { + for (i = p.begin(); i != p.end(); ++i) { // these are the points we get back cvh.add((*i).getPoint()); } |
