summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/attr.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mst@openoffice.org>2011-01-19 20:27:25 +0100
committerMichael Stahl <mst@openoffice.org>2011-01-19 20:27:25 +0100
commit46716bcf7fd75a2a293722a6a458e4138c91f394 (patch)
tree6e4ba2b0ef026d55b94d9fe3a025c0cc3ac59c7c /unoxml/source/dom/attr.hxx
parent06ebc79a5d723211d55be7a1c014299e71acfc20 (diff)
xmlfix3: unoxml: all node ctors get CDocument parameter
(and in the next patch, an actual CDocument, not just 0 :)
Diffstat (limited to 'unoxml/source/dom/attr.hxx')
-rw-r--r--unoxml/source/dom/attr.hxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/unoxml/source/dom/attr.hxx b/unoxml/source/dom/attr.hxx
index 2b47061c9dd7..bff00353b7cb 100644
--- a/unoxml/source/dom/attr.hxx
+++ b/unoxml/source/dom/attr.hxx
@@ -28,13 +28,15 @@
#ifndef DOM_ATTR_HXX
#define DOM_ATTR_HXX
+#include <libxml/tree.h>
+
#include <cppuhelper/implbase1.hxx>
+
#include <com/sun/star/uno/Reference.h>
-#include <com/sun/star/uno/Exception.hpp>
#include <com/sun/star/xml/dom/XNode.hpp>
#include <com/sun/star/xml/dom/XAttr.hpp>
-#include "node.hxx"
-#include <libxml/tree.h>
+
+#include <node.hxx>
using ::rtl::OUString;
using namespace com::sun::star::uno;
@@ -53,7 +55,7 @@ namespace DOM
xmlAttrPtr m_aAttrPtr;
protected:
- CAttr(const xmlAttrPtr aAttrPtr);
+ CAttr(CDocument const& rDocument, xmlAttrPtr const pAttr);
public:
/**