summaryrefslogtreecommitdiffstats
path: root/src/xml/document.h
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2007-01-21 19:03:03 +0000
committermental <mental@users.sourceforge.net>2007-01-21 19:03:03 +0000
commit63731301866e7b9cb231a43658a7c51ec2d70690 (patch)
tree91b475a32308003e60e40ac0f318dc00be019a6e /src/xml/document.h
parentDeprecate sp_repr_new* functions (diff)
downloadinkscape-63731301866e7b9cb231a43658a7c51ec2d70690.tar.gz
inkscape-63731301866e7b9cb231a43658a7c51ec2d70690.zip
start switching sp_repr_new* over to XML::Document::create*, and rename create methods to match DOM
(bzr r2253)
Diffstat (limited to 'src/xml/document.h')
-rw-r--r--src/xml/document.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xml/document.h b/src/xml/document.h
index eeb16e74f..de9164aa2 100644
--- a/src/xml/document.h
+++ b/src/xml/document.h
@@ -34,9 +34,9 @@ public:
virtual void commit()=0;
virtual Inkscape::XML::Event *commitUndoable()=0;
- virtual Node *createElementNode(char const *name)=0;
+ virtual Node *createElement(char const *name)=0;
virtual Node *createTextNode(char const *content)=0;
- virtual Node *createCommentNode(char const *content)=0;
+ virtual Node *createComment(char const *content)=0;
};
}