[Libreoffice-commits] core.git: cui/source

Noel Grandin (via logerrit) logerrit at kemper.freedesktop.org
Fri Apr 23 13:33:52 UTC 2021


 cui/source/customize/cfg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8fd411d2099154c9b9f8932a3fd62bf2e0c4a2e8
Author:     Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Fri Apr 23 13:15:50 2021 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
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 <noel.grandin at collabora.co.uk>

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;


More information about the Libreoffice-commits mailing list