From 4f46bb0e09ddfa540b60bd4d152385729127aceb Mon Sep 17 00:00:00 2001 From: MenTaLguY Date: Mon, 6 Feb 2006 04:15:05 +0000 Subject: replace Util::SharedCStringPtr with the more general Util::shared_ptr<> (bzr r87) --- src/xml/node-observer.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/xml/node-observer.h') diff --git a/src/xml/node-observer.h b/src/xml/node-observer.h index 4a884b8a9..e50a41dd8 100644 --- a/src/xml/node-observer.h +++ b/src/xml/node-observer.h @@ -16,7 +16,7 @@ #define SEEN_INKSCAPE_XML_NODE_OBSERVER_H #include -#include "util/shared-c-string-ptr.h" +#include "util/share.h" namespace Inkscape { namespace XML { @@ -43,12 +43,12 @@ public: Node *old_prev, Node *new_prev)=0; virtual void notifyContentChanged(Node &node, - Util::SharedCStringPtr old_content, - Util::SharedCStringPtr new_content)=0; + Util::shared_ptr old_content, + Util::shared_ptr new_content)=0; virtual void notifyAttributeChanged(Node &node, GQuark name, - Util::SharedCStringPtr old_value, - Util::SharedCStringPtr new_value)=0; + Util::shared_ptr old_value, + Util::shared_ptr new_value)=0; }; } -- cgit v1.2.3