summaryrefslogtreecommitdiffstats
path: root/src/sp-flowtext.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/sp-flowtext.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/sp-flowtext.cpp')
-rw-r--r--src/sp-flowtext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-flowtext.cpp b/src/sp-flowtext.cpp
index 741ca7886..c5af85774 100644
--- a/src/sp-flowtext.cpp
+++ b/src/sp-flowtext.cpp
@@ -714,7 +714,7 @@ Geom::Affine SPFlowtext::set_transform (Geom::Affine const &xform)
SPRect *rect = dynamic_cast<SPRect *>(region->firstChild());
if (rect) {
rect->set_i2d_affine(xform * rect->i2dt_affine());
- rect->doWriteTransform(rect->getRepr(), rect->transform, NULL, true);
+ rect->doWriteTransform(rect->transform, NULL, true);
}
}