diff options
Diffstat (limited to 'sw/source/uibase/inc/labrec.hxx')
-rw-r--r-- | sw/source/uibase/inc/labrec.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/source/uibase/inc/labrec.hxx b/sw/source/uibase/inc/labrec.hxx index 3e5f124b1489..1a133ed8e451 100644 --- a/sw/source/uibase/inc/labrec.hxx +++ b/sw/source/uibase/inc/labrec.hxx @@ -19,7 +19,9 @@ #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_LABREC_HXX #define INCLUDED_SW_SOURCE_UIBASE_INC_LABREC_HXX -#include <boost/ptr_container/ptr_vector.hpp> +#include <memory> +#include <vector> + class SwLabItem; @@ -46,7 +48,7 @@ public: bool bCont; }; -typedef boost::ptr_vector<SwLabRec> SwLabRecs; +typedef std::vector<std::unique_ptr<SwLabRec>> SwLabRecs; #endif |