summaryrefslogtreecommitdiffstats
path: root/src/sp-item.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-item.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-item.cpp')
-rw-r--r--src/sp-item.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sp-item.cpp b/src/sp-item.cpp
index b4642da5d..dd98ee1a4 100644
--- a/src/sp-item.cpp
+++ b/src/sp-item.cpp
@@ -1422,9 +1422,8 @@ Geom::Affine SPItem::set_transform(Geom::Affine const &transform) {
return transform;
}
-void SPItem::doWriteTransform(Inkscape::XML::Node *repr, Geom::Affine const &transform, Geom::Affine const *adv, bool compensate)
+void SPItem::doWriteTransform(Geom::Affine const &transform, Geom::Affine const *adv, bool compensate)
{
- g_return_if_fail(repr != NULL);
// calculate the relative transform, if not given by the adv attribute
Geom::Affine advertized_transform;
if (adv != NULL) {