summaryrefslogtreecommitdiffstats
path: root/src/xml/repr.cpp
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2007-01-25 04:09:08 +0000
committermental <mental@users.sourceforge.net>2007-01-25 04:09:08 +0000
commitffdc4605452616809c087ec72dd7571bd51f6ef7 (patch)
tree64596d020104a32e736fca70344b1d565847f405 /src/xml/repr.cpp
parenteliminate last uses of sp_repr_new* (diff)
downloadinkscape-ffdc4605452616809c087ec72dd7571bd51f6ef7.tar.gz
inkscape-ffdc4605452616809c087ec72dd7571bd51f6ef7.zip
get rid of sp_repr_new*
(bzr r2284)
Diffstat (limited to 'src/xml/repr.cpp')
-rw-r--r--src/xml/repr.cpp26
1 files changed, 0 insertions, 26 deletions
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)