From a0c41f53cd13f12d6e122c92e530bd0bd9c14d79 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Fri, 11 Sep 2015 15:59:57 +0200 Subject: sw: replace boost::ptr_vector with std::vector Change-Id: I5316874cb8abe191da4fd385b281599d422a23ee --- sw/inc/modcfg.hxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'sw/inc') diff --git a/sw/inc/modcfg.hxx b/sw/inc/modcfg.hxx index 02d0a18c0093..80e43f868b7e 100644 --- a/sw/inc/modcfg.hxx +++ b/sw/inc/modcfg.hxx @@ -19,7 +19,6 @@ #ifndef INCLUDED_SW_INC_MODCFG_HXX #define INCLUDED_SW_INC_MODCFG_HXX -#include #include #include #include @@ -32,6 +31,9 @@ #include #include +#include +#include + class SwModuleOptions; class InsCaptionOpt; @@ -53,8 +55,8 @@ namespace o3tl class InsCaptionOptArr { private: - typedef boost::ptr_vector InsCapOptArr; - InsCapOptArr m_aInsCapOptArr; + typedef std::vector> InsCapOptArr; + InsCapOptArr m_InsCapOptArr; public: InsCaptionOpt* Find(const SwCapObjType eType, const SvGlobalName *pOleId = 0); void Insert(InsCaptionOpt* pObj); -- cgit