diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-07-31 19:21:43 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-31 20:26:46 +0200 |
commit | 3bf99d6c62e14880ecfaea298eaa2a40918ce333 (patch) | |
tree | 529e71829a628edfe3f0f52367c64602c10afb57 | |
parent | 3a1d91045b339c00267771acd60ed5d53a90c409 (diff) |
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
-rw-r--r-- | sw/inc/flypos.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 |