diff options
| author | MenTaLguY <mental@rydia.net> | 2007-01-21 19:03:03 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2007-01-21 19:03:03 +0000 |
| commit | 63731301866e7b9cb231a43658a7c51ec2d70690 (patch) | |
| tree | 91b475a32308003e60e40ac0f318dc00be019a6e /src/xml/simple-document.h | |
| parent | Deprecate sp_repr_new* functions (diff) | |
| download | inkscape-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/simple-document.h')
| -rw-r--r-- | src/xml/simple-document.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xml/simple-document.h b/src/xml/simple-document.h index ca130e62b..c8ee4d9b4 100644 --- a/src/xml/simple-document.h +++ b/src/xml/simple-document.h @@ -46,9 +46,9 @@ public: void commit(); Inkscape::XML::Event *commitUndoable(); - Node *createElementNode(char const *name); + Node *createElement(char const *name); Node *createTextNode(char const *content); - Node *createCommentNode(char const *content); + Node *createComment(char const *content); void notifyChildAdded(Node &parent, Node &child, Node *prev); |
