diff options
| author | Stefano Facchini <stefano.facchini@gmail.com> | 2017-09-23 08:02:16 +0000 |
|---|---|---|
| committer | Stefano Facchini <stefano.facchini@gmail.com> | 2017-09-24 11:26:11 +0000 |
| commit | 6a03015b016c177e0657fc6274a571db16e48b64 (patch) | |
| tree | b0c5ac10a661f4edd76e1b530c3ed34d05699e65 /src/unclump.cpp | |
| parent | Fix bug #1094504 GTK3: RegisteredColorPicker (e.g. for grid, guides color) do... (diff) | |
| download | inkscape-6a03015b016c177e0657fc6274a571db16e48b64.tar.gz inkscape-6a03015b016c177e0657fc6274a571db16e48b64.zip | |
Remove unused parameter in SPItem::doWriteTransform
Diffstat (limited to 'src/unclump.cpp')
| -rw-r--r-- | src/unclump.cpp | 4 |
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); } |
