summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/wrtww8.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-10-27 18:06:31 +0100
committerMichael Stahl <mstahl@redhat.com>2015-10-28 14:47:16 +0100
commit44d38a110b87afbba6f8221e226ce22a93a39127 (patch)
tree8867f2c854224fbc511f5cdbc21d939476848731 /sw/source/filter/ww8/wrtww8.hxx
parent191ca975b7fd37d79d8b82fdf4ecb5f298625c22 (diff)
sw: replace boost::ptr_vector with std::vector<std::unique_ptr>
Change-Id: I32edfa929aa81431a1e20180f3fd8a539ad43274
Diffstat (limited to 'sw/source/filter/ww8/wrtww8.hxx')
-rw-r--r--sw/source/filter/ww8/wrtww8.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sw/source/filter/ww8/wrtww8.hxx b/sw/source/filter/ww8/wrtww8.hxx
index 7bb353b40ce6..e05c50e9b676 100644
--- a/sw/source/filter/ww8/wrtww8.hxx
+++ b/sw/source/filter/ww8/wrtww8.hxx
@@ -39,7 +39,6 @@
#include <vcl/graph.hxx>
#include <boost/optional.hpp>
-#include <boost/ptr_container/ptr_vector.hpp>
#include <memory>
#include <map>
@@ -1253,13 +1252,13 @@ public:
};
// Plc for Chpx and Papx ( incl PN-Plc )
-typedef boost::ptr_vector<WW8_WrFkp> WW8_WrFkpPtrs;
+typedef std::vector<std::unique_ptr<WW8_WrFkp>> WW8_WrFkpPtrs;
class WW8_WrPlcPn // Plc for Page Numbers
{
private:
WW8Export& rWrt;
- WW8_WrFkpPtrs aFkps; // PTRARR
+ WW8_WrFkpPtrs m_Fkps;
sal_uInt16 nFkpStartPage;
ePLCFT ePlc;