summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/elementlist.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/elementlist.hxx')
-rw-r--r--unoxml/source/dom/elementlist.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unoxml/source/dom/elementlist.hxx b/unoxml/source/dom/elementlist.hxx
index 51baa036a2fc..c61df46360ff 100644
--- a/unoxml/source/dom/elementlist.hxx
+++ b/unoxml/source/dom/elementlist.hxx
@@ -22,7 +22,7 @@
#include <vector>
-#include <boost/scoped_array.hpp>
+#include <memory>
#include <libxml/tree.h>
@@ -57,8 +57,8 @@ namespace DOM
::rtl::Reference<CElement> const m_pElement;
::osl::Mutex & m_rMutex;
- ::boost::scoped_array<xmlChar> const m_pName;
- ::boost::scoped_array<xmlChar> const m_pURI;
+ ::std::unique_ptr<xmlChar[]> const m_pName;
+ ::std::unique_ptr<xmlChar[]> const m_pURI;
bool m_bRebuild;
nodevector_t m_nodevector;