X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fsp-use.h;h=c5c07158f99f5a19086b4aab369262da13518e5c;hb=8a2e76b7021b9b960d7c30801a1a14461d9b5939;hp=6927171e102e6f1d96498ebe606b92187614bed4;hpb=5ab9f562e7106ca0cfcdaf845092dae3644edeab;p=inkscape.git diff --git a/src/sp-use.h b/src/sp-use.h index 6927171e1..c5c07158f 100644 --- a/src/sp-use.h +++ b/src/sp-use.h @@ -29,38 +29,38 @@ class SPUseClass; class SPUseReference; struct SPUse : public SPItem { - // item built from the original's repr (the visible clone) - // relative to the SPUse itself, it is treated as a child, similar to a grouped item relative to its group - SPObject *child; + // item built from the original's repr (the visible clone) + // relative to the SPUse itself, it is treated as a child, similar to a grouped item relative to its group + SPObject *child; - // SVG attrs - SVGLength x; - SVGLength y; - SVGLength width; - SVGLength height; - gchar *href; + // SVG attrs + SVGLength x; + SVGLength y; + SVGLength width; + SVGLength height; + gchar *href; - // the reference to the original object - SPUseReference *ref; + // the reference to the original object + SPUseReference *ref; - // a sigc connection for delete notifications - sigc::connection _delete_connection; - sigc::connection _changed_connection; + // a sigc connection for delete notifications + sigc::connection _delete_connection; + sigc::connection _changed_connection; - // a sigc connection for transformed signal, used to do move compensation - sigc::connection _transformed_connection; + // a sigc connection for transformed signal, used to do move compensation + sigc::connection _transformed_connection; }; struct SPUseClass { - SPItemClass parent_class; + SPItemClass parent_class; }; GType sp_use_get_type (void); SPItem *sp_use_unlink (SPUse *use); SPItem *sp_use_get_original (SPUse *use); -NR::Matrix sp_use_get_parent_transform (SPUse *use); -NR::Matrix sp_use_get_root_transform(SPUse *use); +Geom::Matrix sp_use_get_parent_transform (SPUse *use); +Geom::Matrix sp_use_get_root_transform(SPUse *use); SPItem *sp_use_root(SPUse *use); #endif