summaryrefslogtreecommitdiffstats
path: root/src/text-chemistry.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/text-chemistry.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/text-chemistry.cpp')
-rw-r--r--src/text-chemistry.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/text-chemistry.cpp b/src/text-chemistry.cpp
index 2b731c75d..bde269de7 100644
--- a/src/text-chemistry.cpp
+++ b/src/text-chemistry.cpp
@@ -119,7 +119,7 @@ text_put_on_path()
parent->appendChild(repr);
SPItem *new_item = (SPItem *) desktop->getDocument()->getObjectByRepr(repr);
- new_item->doWriteTransform(repr, text->transform);
+ new_item->doWriteTransform(text->transform);
new_item->updateRepr();
Inkscape::GC::release(repr);
@@ -505,7 +505,7 @@ flowtext_to_text()
parent->addChild(repr, item->getRepr());
SPItem *new_item = reinterpret_cast<SPItem *>(desktop->getDocument()->getObjectByRepr(repr));
- new_item->doWriteTransform(repr, item->transform);
+ new_item->doWriteTransform(item->transform);
new_item->updateRepr();
Inkscape::GC::release(repr);