summaryrefslogtreecommitdiffstats
path: root/src/conn-avoid-ref.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-11-03 21:47:20 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-11-03 21:47:20 +0000
commitee0aba306ac9d97109240025272079406c208eb6 (patch)
tree5a09c69d7e848c356ceefe59a3ab5029941cdc15 /src/conn-avoid-ref.cpp
parentFix a localization problem storing attribute (diff)
parentpackaging/macosx: revert change included in last commit by mistake (py-report... (diff)
downloadinkscape-ee0aba306ac9d97109240025272079406c208eb6.tar.gz
inkscape-ee0aba306ac9d97109240025272079406c208eb6.zip
update to trunk
(bzr r14393.1.33)
Diffstat (limited to 'src/conn-avoid-ref.cpp')
-rw-r--r--src/conn-avoid-ref.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conn-avoid-ref.cpp b/src/conn-avoid-ref.cpp
index ec9aba793..4c9665fa0 100644
--- a/src/conn-avoid-ref.cpp
+++ b/src/conn-avoid-ref.cpp
@@ -253,7 +253,7 @@ static std::vector<Geom::Point> approxItemWithPoints(SPItem const *item, const G
SPGroup* group = SP_GROUP(item);
// consider all first-order children
std::vector<SPItem*> itemlist = sp_item_group_item_list(group);
- for (std::vector<SPItem*>::const_iterator i = itemlist.begin(); i != itemlist.end(); i++) {
+ for (std::vector<SPItem*>::const_iterator i = itemlist.begin(); i != itemlist.end(); ++i) {
SPItem* child_item = *i;
std::vector<Geom::Point> child_points = approxItemWithPoints(child_item, item_transform * child_item->transform);
poly_points.insert(poly_points.end(), child_points.begin(), child_points.end());