From 1e7276f52e3e89f794711d65eaaf5221d6bd9547 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Thu, 12 Jul 2012 20:38:33 +0200 Subject: SwContentArr: fix C++11ism Change-Id: Id4151d24fbb12688c7916dbcdac21ca4c6df0b42 --- sw/source/ui/utlui/content.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sw') diff --git a/sw/source/ui/utlui/content.cxx b/sw/source/ui/utlui/content.cxx index db0fcd2b6809..e14e88f73095 100644 --- a/sw/source/ui/utlui/content.cxx +++ b/sw/source/ui/utlui/content.cxx @@ -106,7 +106,9 @@ using namespace ::com::sun::star::container; #define NAVI_BOOKMARK_DELIM (sal_Unicode)1 -class SwContentArr : public o3tl::sorted_vector> { +class SwContentArr + : public o3tl::sorted_vector > +{ public: ~SwContentArr() { DeleteAndDestroyAll(); } }; -- cgit