summaryrefslogtreecommitdiffstats
path: root/src/unclump.cpp
diff options
context:
space:
mode:
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);
}