summaryrefslogtreecommitdiff
path: root/include/svtools
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-07-23 22:14:07 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-24 10:58:53 +0200
commit2f467535231af44af5ee857e2444a87779e82b2c (patch)
tree1b16478b1bb4b2f6deecd8e4a846a6b8e75d5ed1 /include/svtools
parentcef74993a96feae0dd7489a11dfdf062687c0868 (diff)
svtools: replace boost::ptr_vector with std::vector
Change-Id: I70a2919e43495ce10c0c90ec91a25604d82e7d28
Diffstat (limited to 'include/svtools')
-rw-r--r--include/svtools/parhtml.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svtools/parhtml.hxx b/include/svtools/parhtml.hxx
index ee5c41979f89..85a514f0dc37 100644
--- a/include/svtools/parhtml.hxx
+++ b/include/svtools/parhtml.hxx
@@ -23,7 +23,7 @@
#include <svtools/svtdllapi.h>
#include <svtools/svparser.hxx>
-#include <boost/ptr_container/ptr_vector.hpp>
+#include <vector>
namespace com { namespace sun { namespace star {
namespace document {
@@ -118,7 +118,7 @@ public:
//SvxAdjust GetAdjust() const; // <P,TH,TD ALIGN=>
};
-typedef ::boost::ptr_vector<HTMLOption> HTMLOptions;
+typedef ::std::vector<HTMLOption> HTMLOptions;
class SVT_DLLPUBLIC HTMLParser : public SvParser
{