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/sp-item.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/sp-item.cpp')
| -rw-r--r-- | src/sp-item.cpp | 3 |
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) { |
