[Libreoffice-commits] core.git: Branch 'feature/gpg4libre2' - comphelper/source

Thorsten Behrens Thorsten.Behrens at CIB.de
Thu Dec 7 07:43:55 UTC 2017


 comphelper/source/misc/storagehelper.cxx |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 420bfa047cf2418d00a2ece8f3bdf5121e6d4987
Author: Thorsten Behrens <Thorsten.Behrens at CIB.de>
Date:   Thu Dec 7 08:42:28 2017 +0100

    fixup clang errors
    
    Change-Id: Ie5aa49ad70ee9cf95f67b38331f301b6c774d8c4

diff --git a/comphelper/source/misc/storagehelper.cxx b/comphelper/source/misc/storagehelper.cxx
index 6d83d693ba37..e81f1f7e3dac 100644
--- a/comphelper/source/misc/storagehelper.cxx
+++ b/comphelper/source/misc/storagehelper.cxx
@@ -525,10 +525,9 @@ uno::Sequence< beans::NamedValue > OStorageHelper::CreateGpgPackageEncryptionDat
     aEncryptionData[0].Value <<= aVector;
 
     aContainer[0].Name = "GpgInfos";
-    aContainer[0].Value = makeAny(comphelper::containerToSequence(
-                                      aGpgEncryptions));
+    aContainer[0].Value <<= comphelper::containerToSequence(aGpgEncryptions);
     aContainer[1].Name = "EncryptionKey";
-    aContainer[1].Value = makeAny(aEncryptionData);
+    aContainer[1].Value <<= aEncryptionData;
 
     return aContainer;
 }


More information about the Libreoffice-commits mailing list