SwContentArr: fix C++11ism

Change-Id: Id4151d24fbb12688c7916dbcdac21ca4c6df0b42
This commit is contained in:
Michael Stahl
2012-07-12 20:38:33 +02:00
parent 88f16eb151
commit 1e7276f52e

View File

@@ -106,7 +106,9 @@ using namespace ::com::sun::star::container;
#define NAVI_BOOKMARK_DELIM (sal_Unicode)1
class SwContentArr : public o3tl::sorted_vector<SwContent*, o3tl::less_ptr_to<SwContent>> {
class SwContentArr
: public o3tl::sorted_vector<SwContent*, o3tl::less_ptr_to<SwContent> >
{
public:
~SwContentArr() { DeleteAndDestroyAll(); }
};