summaryrefslogtreecommitdiffstats
path: root/src/document.h
diff options
context:
space:
mode:
authorjohnce <johnce@users.sourceforge.net>2009-08-05 18:32:38 +0000
committerjohnce <johnce@users.sourceforge.net>2009-08-05 18:32:38 +0000
commite8b5612f8dbe3cefaf56469320fa12bea9713a1b (patch)
tree74775a17063750fef065108a67621107c9f56122 /src/document.h
parentSPDocument->Document (diff)
downloadinkscape-e8b5612f8dbe3cefaf56469320fa12bea9713a1b.tar.gz
inkscape-e8b5612f8dbe3cefaf56469320fa12bea9713a1b.zip
xml/Document -> DocumentTree
(bzr r8417)
Diffstat (limited to 'src/document.h')
-rw-r--r--src/document.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/document.h b/src/document.h
index 45b828155..cb83c4d0d 100644
--- a/src/document.h
+++ b/src/document.h
@@ -31,6 +31,8 @@
#include <vector>
#include <set>
+#include "xml/document.h"
+
namespace Avoid {
class Router;
}
@@ -84,7 +86,7 @@ public:
unsigned int virgin : 1; ///< Has the document never been touched?
unsigned int modified_since_save : 1;
- Inkscape::XML::Document *rdoc; ///< Our Inkscape::XML::Document
+ Inkscape::XML::DocumentTree *rdoc; ///< Our Inkscape::XML::Document
Inkscape::XML::Node *rroot; ///< Root element of Inkscape::XML::Document
SPObject *root; ///< Our SPRoot
CRCascade *style_cascade;