diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-10-29 10:27:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-10-29 15:09:46 +0100 |
commit | 3ec47562259eb91ed86bb6d8e6f18500a529aba1 (patch) | |
tree | 5c1dd85c8d99e546c3adb1646451b3f70ca91ca4 /ucb | |
parent | 6c7daad03a2ee99fcbac64510049b06957eff8d5 (diff) |
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@redhat.com>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/cmis/cmis_content.cxx | 2 |
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 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; |