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/repr.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/xml/repr.cpp') diff --git a/src/xml/repr.cpp b/src/xml/repr.cpp index 2cd770a52..9612bb858 100644 --- a/src/xml/repr.cpp +++ b/src/xml/repr.cpp @@ -28,7 +28,7 @@ #include "xml/comment-node.h" #include "xml/simple-document.h" -using Inkscape::Util::SharedCStringPtr; +using Inkscape::Util::share_string; /// Returns new node. Inkscape::XML::Node * @@ -45,7 +45,7 @@ Inkscape::XML::Node * sp_repr_new_text(gchar const *content) { g_return_val_if_fail(content != NULL, NULL); - return new Inkscape::XML::TextNode(SharedCStringPtr::copy(content)); + return new Inkscape::XML::TextNode(share_string(content)); } /// Returns new commentnode with comment. See Inkscape::XML::CommentNode. @@ -53,7 +53,7 @@ Inkscape::XML::Node * sp_repr_new_comment(gchar const *comment) { g_return_val_if_fail(comment != NULL, NULL); - return new Inkscape::XML::CommentNode(SharedCStringPtr::copy(comment)); + return new Inkscape::XML::CommentNode(share_string(comment)); } /// Returns new document having as first child a node named rootname. -- cgit v1.2.3