X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fxml%2Fevent.h;h=59dbe7c7bc5ab4f2b561d7b733af89e133870f2a;hb=8a539cb9d32e7082b6a2774815acc2eccc5e1694;hp=56fdb8bb60d43e6c7b507ce0597e51553b83c63a;hpb=e7cd2ec3e1687a262ebe95e5ac7a47f8ab147ce2;p=inkscape.git diff --git a/src/xml/event.h b/src/xml/event.h index 56fdb8bb6..59dbe7c7b 100644 --- a/src/xml/event.h +++ b/src/xml/event.h @@ -96,15 +96,15 @@ private: class EventChgAttr : public Event { public: EventChgAttr(Node *repr, GQuark k, - Inkscape::Util::shared_ptr ov, - Inkscape::Util::shared_ptr nv, + Inkscape::Util::ptr_shared ov, + Inkscape::Util::ptr_shared nv, Event *next) : Event(repr, next), key(k), oldval(ov), newval(nv) {} GQuark key; - Inkscape::Util::shared_ptr oldval; - Inkscape::Util::shared_ptr newval; + Inkscape::Util::ptr_shared oldval; + Inkscape::Util::ptr_shared newval; private: Event *_optimizeOne(); @@ -115,13 +115,13 @@ private: class EventChgContent : public Event { public: EventChgContent(Node *repr, - Inkscape::Util::shared_ptr ov, - Inkscape::Util::shared_ptr nv, + Inkscape::Util::ptr_shared ov, + Inkscape::Util::ptr_shared nv, Event *next) : Event(repr, next), oldval(ov), newval(nv) {} - Inkscape::Util::shared_ptr oldval; - Inkscape::Util::shared_ptr newval; + Inkscape::Util::ptr_shared oldval; + Inkscape::Util::ptr_shared newval; private: Event *_optimizeOne();