summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2020-10-27 21:10:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-10-28 07:23:39 +0100
commitce0f8cff3e2e42bf6ff0968c3a6a9efb71ec00d1 (patch)
treeb7754de47d0ce25e89e070e27c7f1f2e02497982 /svx
parent917401207eed9e3c70a01260f1ea770779620e9d (diff)
std::set->o3tl::sorted_vector in InterfaceBag
Change-Id: I28ecffdcf6c97f9153e62974bf76b972452747eb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104901 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/form/fmshimp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/form/fmshimp.cxx b/svx/source/form/fmshimp.cxx
index d7f25ec073bc..df80dae12a11 100644
--- a/svx/source/form/fmshimp.cxx
+++ b/svx/source/form/fmshimp.cxx
@@ -2603,7 +2603,7 @@ void FmXFormShell::impl_RemoveElement_nothrow_Lock(const Reference<XInterface>&
}
}
- InterfaceBag::iterator wasSelectedPos = m_aCurrentSelection.find( Element );
+ auto wasSelectedPos = m_aCurrentSelection.find( Element );
if ( wasSelectedPos != m_aCurrentSelection.end() )
m_aCurrentSelection.erase( wasSelectedPos );
}