diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-04-23 13:15:50 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-04-23 15:33:08 +0200 |
commit | 8fd411d2099154c9b9f8932a3fd62bf2e0c4a2e8 (patch) | |
tree | 711e0a96fbee9b56689b65034ce88accc4913905 /cui | |
parent | 3199182588fecac8a1c1fe202ca55702a3aab6ab (diff) |
this Sequence can be a std::vector
Change-Id: I678db4ed598b3e1061857e942185b2307fbb9e88
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114538
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/customize/cfg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx index 6f70d87124e2..fe1b68db85b9 100644 --- a/cui/source/customize/cfg.cxx +++ b/cui/source/customize/cfg.cxx @@ -2986,7 +2986,7 @@ namespace void SvxIconSelectorDialog::ImportGraphics( const uno::Sequence< OUString >& rPaths ) { - uno::Sequence< OUString > rejected( rPaths.getLength() ); + std::vector< OUString > rejected( rPaths.getLength() ); sal_Int32 rejectedCount = 0; sal_uInt16 ret = 0; |