From: mental Date: Thu, 25 Jan 2007 04:09:08 +0000 (+0000) Subject: get rid of sp_repr_new* X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8462c94f848b2f7870db1ebdc00cd01e61deb800;p=inkscape.git get rid of sp_repr_new* --- diff --git a/src/xml/repr.cpp b/src/xml/repr.cpp index c6943a252..be226a357 100644 --- a/src/xml/repr.cpp +++ b/src/xml/repr.cpp @@ -30,32 +30,6 @@ using Inkscape::Util::share_string; -/// Returns new node. -Inkscape::XML::Node * -sp_repr_new(gchar const *name) -{ - g_return_val_if_fail(name != NULL, NULL); - g_return_val_if_fail(*name != '\0', NULL); - - return new Inkscape::XML::ElementNode(g_quark_from_string(name)); -} - -/// Returns new textnode with content. See Inkscape::XML::TextNode. -Inkscape::XML::Node * -sp_repr_new_text(gchar const *content) -{ - g_return_val_if_fail(content != NULL, NULL); - return new Inkscape::XML::TextNode(share_string(content)); -} - -/// Returns new commentnode with comment. See Inkscape::XML::CommentNode. -Inkscape::XML::Node * -sp_repr_new_comment(gchar const *comment) -{ - g_return_val_if_fail(comment != NULL, NULL); - return new Inkscape::XML::CommentNode(share_string(comment)); -} - /// Returns new document having as first child a node named rootname. Inkscape::XML::Document * sp_repr_document_new(char const *rootname) diff --git a/src/xml/repr.h b/src/xml/repr.h index 416c979f9..1b2cad756 100644 --- a/src/xml/repr.h +++ b/src/xml/repr.h @@ -131,11 +131,6 @@ char const *sp_xml_ns_uri_prefix(gchar const *uri, gchar const *suggested); char const *sp_xml_ns_prefix_uri(gchar const *prefix); -/* replaced by create* methods on Inkscape::XML::Document */ -Inkscape::XML::Node *sp_repr_new(gchar const *name) __attribute__ ((deprecated)); -Inkscape::XML::Node *sp_repr_new_text(gchar const *content) __attribute__ ((deprecated)); -Inkscape::XML::Node *sp_repr_new_comment(gchar const *comment) __attribute__ ((deprecated)); - /*inline Inkscape::XML::Node *sp_repr_duplicate(Inkscape::XML::Node const *repr) { return repr->duplicate(); }*/