summaryrefslogtreecommitdiff
path: root/configmgr/source/components.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2024-05-10 08:57:07 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-05-10 10:44:13 +0200
commit3c5d5d8ae3dfb876386e434257b5b3a81cb96c07 (patch)
treecb34a084bdbd4d8bc289b8fa6349493da12ff0cc /configmgr/source/components.cxx
parentbaaeca870f5c8ae40d33eff2b530bd4b3670ee45 (diff)
no need to convert from Sequence to std::set here
we are never actually going to need a set, so just iterate over the Sequence Change-Id: I0de6ff9e0661227a69b7fbe6cccc5268f9eba58f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167430 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'configmgr/source/components.cxx')
-rw-r--r--configmgr/source/components.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/components.cxx b/configmgr/source/components.cxx
index 7c6f6f2d79fc..8afaaff3bae8 100644
--- a/configmgr/source/components.cxx
+++ b/configmgr/source/components.cxx
@@ -389,8 +389,8 @@ void Components::removeExtensionXcuFile(
void Components::insertModificationXcuFile(
OUString const & fileUri,
- std::set< OUString > const & includedPaths,
- std::set< OUString > const & excludedPaths,
+ css::uno::Sequence< OUString > const & includedPaths,
+ css::uno::Sequence< OUString > const & excludedPaths,
Modifications * modifications)
{
assert(modifications != nullptr);