summaryrefslogtreecommitdiffstats
path: root/unoxml/source/dom/text.cxx
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/text.cxx
parentxmlfix3: unoxml: replace CNode XUnoTunnel implementation with something sane (diff)
downloadcore-46716bcf7fd75a2a293722a6a458e4138c91f394.tar.gz
core-46716bcf7fd75a2a293722a6a458e4138c91f394.zip
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/text.cxx')
-rw-r--r--unoxml/source/dom/text.cxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/unoxml/source/dom/text.cxx b/unoxml/source/dom/text.cxx
index 690aef57d7c3..a5fff96d30dc 100644
--- a/unoxml/source/dom/text.cxx
+++ b/unoxml/source/dom/text.cxx
@@ -25,17 +25,19 @@
*
************************************************************************/
-#include "text.hxx"
+#include <text.hxx>
+
namespace DOM
{
- CText::CText(NodeType const& reNodeType, xmlNodePtr const& rpNode)
- : CText_Base(reNodeType, rpNode)
+ CText::CText(CDocument const& rDocument,
+ NodeType const& reNodeType, xmlNodePtr const& rpNode)
+ : CText_Base(rDocument, reNodeType, rpNode)
{
}
- CText::CText(const xmlNodePtr aNodePtr)
- : CText_Base(NodeType_TEXT_NODE, aNodePtr)
+ CText::CText(CDocument const& rDocument, xmlNodePtr const pNode)
+ : CText_Base(rDocument, NodeType_TEXT_NODE, pNode)
{
}