summaryrefslogtreecommitdiffstats
path: root/src/unclump.cpp
diff options
context:
space:
mode:
authorStefano Facchini <stefano.facchini@gmail.com>2017-09-23 08:02:16 +0000
committerStefano Facchini <stefano.facchini@gmail.com>2017-09-24 11:26:11 +0000
commit6a03015b016c177e0657fc6274a571db16e48b64 (patch)
treeb0c5ac10a661f4edd76e1b530c3ed34d05699e65 /src/unclump.cpp
parentFix bug #1094504 GTK3: RegisteredColorPicker (e.g. for grid, guides color) do... (diff)
downloadinkscape-6a03015b016c177e0657fc6274a571db16e48b64.tar.gz
inkscape-6a03015b016c177e0657fc6274a571db16e48b64.zip
Remove unused parameter in SPItem::doWriteTransform
Diffstat (limited to 'src/unclump.cpp')
-rw-r--r--src/unclump.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unclump.cpp b/src/unclump.cpp
index 5ec5cfce4..55825cdd6 100644
--- a/src/unclump.cpp
+++ b/src/unclump.cpp
@@ -298,7 +298,7 @@ unclump_push (SPItem *from, SPItem *what, double dist)
//g_print ("push %s at %g,%g from %g,%g by %g,%g, dist %g\n", what->getId(), it[Geom::X],it[Geom::Y], p[Geom::X],p[Geom::Y], by[Geom::X],by[Geom::Y], dist);
what->set_i2d_affine(what->i2dt_affine() * move);
- what->doWriteTransform(what->getRepr(), what->transform, NULL);
+ what->doWriteTransform(what->transform);
}
/**
@@ -321,7 +321,7 @@ unclump_pull (SPItem *to, SPItem *what, double dist)
//g_print ("pull %s at %g,%g to %g,%g by %g,%g, dist %g\n", what->getId(), it[Geom::X],it[Geom::Y], p[Geom::X],p[Geom::Y], by[Geom::X],by[Geom::Y], dist);
what->set_i2d_affine(what->i2dt_affine() * move);
- what->doWriteTransform(what->getRepr(), what->transform, NULL);
+ what->doWriteTransform(what->transform);
}