summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2020-10-27 21:11:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-10-28 07:23:55 +0100
commit765a1ac1ff67b3fb2ddd109c9589e4b8e1090695 (patch)
treed923b2b9341a4abe6ad2842e91a25e37ada7e78f /comphelper
parentce0f8cff3e2e42bf6ff0968c3a6a9efb71ec00d1 (diff)
std::set->o3tl::sorted_vector in OPropertyArrayAggregationHelper
Change-Id: Iec4935af8946e453b39221dcb982059c806f62a4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104902 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/property/propagg.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/comphelper/source/property/propagg.cxx b/comphelper/source/property/propagg.cxx
index af1092c9748b..576621246207 100644
--- a/comphelper/source/property/propagg.cxx
+++ b/comphelper/source/property/propagg.cxx
@@ -24,10 +24,9 @@
#include <osl/diagnose.h>
#include <sal/log.hxx>
#include <com/sun/star/beans/PropertyAttribute.hpp>
-
+#include <o3tl/sorted_vector.hxx>
#include <typeinfo>
#include <algorithm>
-#include <set>
#include <unordered_set>
#include <memory>
@@ -250,7 +249,7 @@ namespace internal
{
private:
OPropertySetAggregationHelper& m_rAggregationHelper;
- std::set< sal_Int32 > m_aProperties;
+ o3tl::sorted_vector< sal_Int32 > m_aProperties;
sal_Int32 m_nCurrentlyForwarding;
public: