summaryrefslogtreecommitdiff
path: root/include/svtools/parhtml.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svtools/parhtml.hxx')
-rw-r--r--include/svtools/parhtml.hxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/svtools/parhtml.hxx b/include/svtools/parhtml.hxx
index ed4f4c386fcf..09027f46e2c6 100644
--- a/include/svtools/parhtml.hxx
+++ b/include/svtools/parhtml.hxx
@@ -20,11 +20,14 @@
#ifndef INCLUDED_SVTOOLS_PARHTML_HXX
#define INCLUDED_SVTOOLS_PARHTML_HXX
+#include <sal/config.h>
+
+#include <memory>
+#include <vector>
+
#include <svtools/svtdllapi.h>
#include <svtools/svparser.hxx>
-#include <boost/ptr_container/ptr_vector.hpp>
-
namespace com { namespace sun { namespace star {
namespace document {
class XDocumentProperties;
@@ -118,7 +121,7 @@ public:
//SvxAdjust GetAdjust() const; // <P,TH,TD ALIGN=>
};
-typedef ::boost::ptr_vector<HTMLOption> HTMLOptions;
+typedef std::vector<std::unique_ptr<HTMLOption>> HTMLOptions;
class SVT_DLLPUBLIC HTMLParser : public SvParser
{