diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-07-23 22:14:07 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-24 10:58:53 +0200 |
commit | 2f467535231af44af5ee857e2444a87779e82b2c (patch) | |
tree | 1b16478b1bb4b2f6deecd8e4a846a6b8e75d5ed1 /include/svtools | |
parent | cef74993a96feae0dd7489a11dfdf062687c0868 (diff) |
svtools: replace boost::ptr_vector with std::vector
Change-Id: I70a2919e43495ce10c0c90ec91a25604d82e7d28
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/parhtml.hxx | 4 |
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 { |