From 40a243a7a5e67d4f09a82bfbee5babe40ec924b7 Mon Sep 17 00:00:00 2001 From: Jasper van de Gronde Date: Fri, 21 Mar 2008 19:53:10 +0000 Subject: No more NRMatrix or NRPoint. (bzr r5149) --- src/sp-item.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/sp-item.cpp') diff --git a/src/sp-item.cpp b/src/sp-item.cpp index 65d8b997c..4b5ddb373 100644 --- a/src/sp-item.cpp +++ b/src/sp-item.cpp @@ -1248,16 +1248,16 @@ sp_item_adjust_livepatheffect (SPItem *item, NR::Matrix const &postmul, bool set } /** - * A temporary wrapper for the next function accepting the NRMatrix + * A temporary wrapper for the next function accepting the NR::Matrix * instead of NR::Matrix */ void -sp_item_write_transform(SPItem *item, Inkscape::XML::Node *repr, NRMatrix const *transform, NR::Matrix const *adv) +sp_item_write_transform(SPItem *item, Inkscape::XML::Node *repr, NR::Matrix const *transform, NR::Matrix const *adv) { if (transform == NULL) sp_item_write_transform(item, repr, NR::identity(), adv); else - sp_item_write_transform(item, repr, NR::Matrix (transform), adv); + sp_item_write_transform(item, repr, *transform, adv); } /** -- cgit v1.2.3