From 3bf99d6c62e14880ecfaea298eaa2a40918ce333 Mon Sep 17 00:00:00 2001 From: Michael Stahl <mstahl@redhat.com> Date: Tue, 31 Jul 2012 19:21:43 +0200 Subject: SwHTMLPosFlyFrms: fix STL conversion: It appears that the operator== for SwPosFlyFrm always returns false, so cf0e08c6b8d739b8b17dc533efc3e12505b2d5a9 changed the semantics; use std::mulitset to fix it. Change-Id: Ib7a8ebe56e146d21c265e60ad68c6b4a319dfe98 --- sw/inc/flypos.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sw') diff --git a/sw/inc/flypos.hxx b/sw/inc/flypos.hxx index e979ab8226f3..b172054695bb 100644 --- a/sw/inc/flypos.hxx +++ b/sw/inc/flypos.hxx @@ -55,7 +55,7 @@ public: sal_uInt32 GetOrdNum() const { return nOrdNum; } }; -class SW_DLLPUBLIC SwPosFlyFrms : public std::set<SwPosFlyFrm*> {}; +class SwPosFlyFrms : public std::multiset<SwPosFlyFrm*> {}; #endif // _FLYPOS_HXX -- cgit