From 0a601a0cb14dc0f60e00eb46929f53eebe59a6af Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Wed, 16 Sep 2015 12:40:14 +0200 Subject: sw: replace boost::ptr_vector with std::vector Change-Id: I3bfb0933d5233b89f24773500f07fdc92d0011e9 --- sw/inc/ToxLinkProcessor.hxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'sw/inc') diff --git a/sw/inc/ToxLinkProcessor.hxx b/sw/inc/ToxLinkProcessor.hxx index 3887121e06dc..699c0ec9887e 100644 --- a/sw/inc/ToxLinkProcessor.hxx +++ b/sw/inc/ToxLinkProcessor.hxx @@ -13,7 +13,8 @@ #include "fmtinfmt.hxx" #include "rtl/ustring.hxx" -#include +#include +#include class SwTextNode; @@ -76,9 +77,9 @@ private: sal_Int32 mEndTextPos; }; - boost::ptr_vector mClosedLinks; + std::vector> m_ClosedLinks; - boost::ptr_vector mStartedLinks; + std::vector> m_StartedLinks; friend class ::ToxLinkProcessorTest; }; -- cgit