diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2020-02-01 21:50:47 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-02 12:51:24 +0100 |
commit | 4b096419770a5b9018f011afb5e78e00c30c526a (patch) | |
tree | af06d9ed75bfcee952e14289ad1771b5adc48a81 /sw | |
parent | dc9bf7ca261e91adb32af3e51a51998a402a5752 (diff) |
std::set->o3tl::sorted_vector in SwAccessibleMap
Change-Id: Ic05a160e91a435a540c95c23c9759f667376d61a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87822
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/accmap.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/accmap.hxx b/sw/inc/accmap.hxx index d7e5269971ce..9f2aa0daf5fe 100644 --- a/sw/inc/accmap.hxx +++ b/sw/inc/accmap.hxx @@ -30,7 +30,7 @@ #include <vector> #include <memory> -#include <set> +#include <o3tl/sorted_vector.hxx> class SwAccessibleParagraph; class SwViewShell; @@ -304,7 +304,7 @@ public: virtual bool IsDocumentSelAll() override; //Para Container for InvalidateCursorPosition - typedef std::set< SwAccessibleParagraph* > SET_PARA; + typedef o3tl::sorted_vector< SwAccessibleParagraph* > SET_PARA; SET_PARA m_setParaAdd; SET_PARA m_setParaRemove; }; |