diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-04 10:14:27 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-04 10:09:04 +0100 |
commit | d543d4d5388f79eee92a97b7bf4cd490d9ed29ea (patch) | |
tree | 416c7e3c33f947d9899431aa180cbe1a33d4a78e /svx/source/svdraw/svdotxat.cxx | |
parent | 213d6390a2cc59d174173f4359c161625a9c4bdc (diff) |
std::set<T*> -> o3tl::sorted_vector
Change-Id: I562f8a8dc27f4aeebec6f6643b95460315edc9c2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87949
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/svdraw/svdotxat.cxx')
-rw-r--r-- | svx/source/svdraw/svdotxat.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdotxat.cxx b/svx/source/svdraw/svdotxat.cxx index ad4c9f6965c1..04b8de638f65 100644 --- a/svx/source/svdraw/svdotxat.cxx +++ b/svx/source/svdraw/svdotxat.cxx @@ -351,7 +351,7 @@ void SdrTextObj::ImpSetTextStyleSheetListeners() } // now convert the strings in the vector from names to StyleSheet* - std::set<SfxStyleSheet*> aStyleSheets; + o3tl::sorted_vector<SfxStyleSheet*> aStyleSheets; while (!aStyleNames.empty()) { OUString aName = aStyleNames.back(); aStyleNames.pop_back(); |