diff options
Diffstat (limited to 'src/xml/repr.cpp')
| -rw-r--r-- | src/xml/repr.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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. |
