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

Stephan Bergmann (via logerrit) logerrit at kemper.freedesktop.org
Thu Oct 29 14:10:27 UTC 2020


 ucb/source/ucp/cmis/cmis_content.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3ec47562259eb91ed86bb6d8e6f18500a529aba1
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Thu Oct 29 10:27:54 2020 +0100
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Thu Oct 29 15:09:46 2020 +0100

    libcmis::Property::getLongs returns std::vector<long>
    
    ...so that needs to be used here.  Reverting part of
    7a09d67e1c76db7cb6a87a2ceaa6de7325342b75 "convert some more long ->
    tools::Long".
    
    Change-Id: I73be5bcc5db244012a9cfbc834e85665ba9cfc10
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104993
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/ucb/source/ucp/cmis/cmis_content.cxx b/ucb/source/ucp/cmis/cmis_content.cxx
index f7974159fe30..cf12bdd8409f 100644
--- a/ucb/source/ucp/cmis/cmis_content.cxx
+++ b/ucb/source/ucp/cmis/cmis_content.cxx
@@ -115,7 +115,7 @@ namespace
                 break;
             case libcmis::PropertyType::Integer:
                 {
-                    vector< tools::Long > aCmisLongs = pProperty->getLongs( );
+                    vector< long > aCmisLongs = pProperty->getLongs( );
                     uno::Sequence< sal_Int64 > aLongs( aCmisLongs.size( ) );
                     sal_Int64* aLongsArr = aLongs.getArray( );
                     sal_Int32 i = 0;


More information about the Libreoffice-commits mailing list