From 3ec47562259eb91ed86bb6d8e6f18500a529aba1 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 29 Oct 2020 10:27:54 +0100 Subject: libcmis::Property::getLongs returns std::vector ...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 --- ucb/source/ucp/cmis/cmis_content.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ucb/source') 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; -- cgit