diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-29 15:24:15 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-30 21:34:09 +0100 |
commit | 1feed2622e99321e0893c8dc0443a534b5905691 (patch) | |
tree | a06ec386a37f94d71371db68c557733fb809ce11 /svx | |
parent | 6b6609fc03d484ce1bfb18162b709704049b5ee9 (diff) |
this std::set can be o3tl::sorted_vector
Change-Id: I74a6141321dc60884789fd3d1a8a2540b662121b
Reviewed-on: https://gerrit.libreoffice.org/84110
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/form/fmscriptingenv.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/svx/source/form/fmscriptingenv.cxx b/svx/source/form/fmscriptingenv.cxx index aa480dd3a123..4dcae395248b 100644 --- a/svx/source/form/fmscriptingenv.cxx +++ b/svx/source/form/fmscriptingenv.cxx @@ -41,6 +41,7 @@ #include <comphelper/processfactory.hxx> #include <vcl/svapp.hxx> #include <osl/mutex.hxx> +#include <o3tl/sorted_vector.hxx> #include <sfx2/objsh.hxx> #include <sfx2/app.hxx> #include <basic/basmgr.hxx> @@ -155,7 +156,7 @@ namespace svxform // since we got rid of the notion of oneway, this is the list // of oneway methods, autogenerated by postprocessing of // commitdiff 90eac3e69749a9227c4b6902b1f3cef1e338c6d1 - static const std::set<pair<OUString, OUString>> delayed_event_listeners{ + static const o3tl::sorted_vector<pair<OUString, OUString>> delayed_event_listeners{ pair<OUString,OUString>("com.sun.star.accessibility.XAccessibleComponent","grabFocus"), pair<OUString,OUString>("com.sun.star.accessibility.XAccessibleEventBroadcaster","addAccessibleEventListener"), pair<OUString,OUString>("com.sun.star.accessibility.XAccessibleEventBroadcaster","removeAccessibleEventListener"), |