summaryrefslogtreecommitdiffstats
path: root/src/object/sp-item-group.cpp
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2018-04-22 22:09:01 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2018-04-23 21:37:56 +0000
commite65551ff4a5356b86a973bcbe4ef973bdf09525c (patch)
tree627efd33fd2695caf16a5b9f52b8b2da22a14343 /src/object/sp-item-group.cpp
parentRemove pathh orig file (diff)
downloadinkscape-e65551ff4a5356b86a973bcbe4ef973bdf09525c.tar.gz
inkscape-e65551ff4a5356b86a973bcbe4ef973bdf09525c.zip
Fix warings on updates
Diffstat (limited to 'src/object/sp-item-group.cpp')
-rw-r--r--src/object/sp-item-group.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object/sp-item-group.cpp b/src/object/sp-item-group.cpp
index 3d89a524d..602c4558c 100644
--- a/src/object/sp-item-group.cpp
+++ b/src/object/sp-item-group.cpp
@@ -970,9 +970,9 @@ sp_group_perform_patheffect(SPGroup *group, SPGroup *top_group, Inkscape::LivePa
// only run LPEs when the shape has a curve defined
if (c) {
lpe->pathvector_before_effect = c->get_pathvector();
- c->transform(i2anc_affine(sub_item, top_group));
+ c->transform(i2anc_affine(sub_shape, top_group));
success = top_group->performOnePathEffect(c, sub_shape, lpe);
- c->transform(i2anc_affine(sub_item, top_group).inverse());
+ c->transform(i2anc_affine(sub_shape, top_group).inverse());
Inkscape::XML::Node *repr = sub_item->getRepr();
if (c && success) {
sub_shape->setCurveInsync(c);