cui/source/customize/cfg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 8fd411d2099154c9b9f8932a3fd62bf2e0c4a2e8 Author: Noel Grandin <[email protected]> AuthorDate: Fri Apr 23 13:15:50 2021 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Fri Apr 23 15:33:08 2021 +0200 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 <[email protected]> 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; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
