summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/cmis
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-10-28 09:15:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-10-28 12:03:48 +0100
commit7a09d67e1c76db7cb6a87a2ceaa6de7325342b75 (patch)
treeb768459ca830b343a3c53d1cea8b80de328ee1fb /ucb/source/ucp/cmis
parent49a39d1abccc61b6dace3e92059ae50a6a2c298d (diff)
convert some more long -> tools::Long
Change-Id: Ide9811c1a7582454b3fcf655b70ea106ed56509a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104914 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb/source/ucp/cmis')
-rw-r--r--ucb/source/ucp/cmis/cmis_content.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/cmis/cmis_content.cxx b/ucb/source/ucp/cmis/cmis_content.cxx
index cf12bdd8409f..f7974159fe30 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< long > aCmisLongs = pProperty->getLongs( );
+ vector< tools::Long > aCmisLongs = pProperty->getLongs( );
uno::Sequence< sal_Int64 > aLongs( aCmisLongs.size( ) );
sal_Int64* aLongsArr = aLongs.getArray( );
sal_Int32 i = 0;