summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2020-11-01 14:10:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-01 15:17:49 +0100
commit090636a305e12538164217cdf7be49980088dc54 (patch)
tree21ccb6c23b847608a489194d356faedced050cd6
parent82da10d3d97c989b14b3da5603d768e1d37559d9 (diff)
std::set->o3tl::sorted_vector in writerfilter
Change-Id: I8b4527c8e40687918b3d5193f6c14ee86addab53 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105132 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--writerfilter/source/dmapper/DomainMapper_Impl.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.hxx b/writerfilter/source/dmapper/DomainMapper_Impl.hxx
index bb7a7d4877b0..f547360df842 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.hxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.hxx
@@ -27,7 +27,7 @@
#include <com/sun/star/embed/XStorage.hpp>
#include <queue>
#include <stack>
-#include <set>
+#include <o3tl/sorted_vector.hxx>
#include <unordered_map>
#include <vector>
#include <optional>
@@ -485,7 +485,7 @@ private:
std::stack< tools::SvRef< DomainMapperTableManager > > m_aTableManagers;
tools::SvRef<DomainMapperTableHandler> m_pTableHandler;
// List of document lists overrides. They are applied only once on first occurrence in document
- std::set<sal_Int32> m_aListOverrideApplied;
+ o3tl::sorted_vector<sal_Int32> m_aListOverrideApplied;
//each context needs a stack of currently used attributes
std::stack<PropertyMapPtr> m_aPropertyStacks[NUMBER_OF_CONTEXTS];