diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-10-29 14:41:45 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-10-29 17:33:31 +0100 |
commit | ec7feef1bcd055098e49e55df3737148e62b75cb (patch) | |
tree | 8027004d879917072a5c92d1737df36e031d8fd3 /ucb | |
parent | 8fca5e32f3ab1529ec33c1a4eeb863dda137b652 (diff) |
SortedResultSet uses sal_IntPtr instead of long
...(which had now been changed to tools::Long with
4fbd63860500b2db76df4d5aedbe5e3aa31fac69 "switching long to a 64-bit type on
64-bit windows") since 9eb4e4dc51a4448d59ee80f39144387c7b3cffaf "Some more
modules at least building with mingw64"
Change-Id: Iea4a68452f22a3c1d4515294e7dab5148e80da05
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105009
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/sorter/sortdynres.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ucb/source/sorter/sortdynres.cxx b/ucb/source/sorter/sortdynres.cxx index c848e306a45d..dc7ad5ea64fc 100644 --- a/ucb/source/sorter/sortdynres.cxx +++ b/ucb/source/sorter/sortdynres.cxx @@ -28,7 +28,6 @@ #include <com/sun/star/ucb/WelcomeDynamicResultSetStruct.hpp> #include <com/sun/star/ucb/CachedDynamicResultSetStubFactory.hpp> #include <com/sun/star/ucb/XSourceInitialization.hpp> -#include <tools/long.hxx> using namespace com::sun::star::beans; using namespace com::sun::star::lang; @@ -282,7 +281,7 @@ void SortedDynamicResultSet::impl_notify( const ListEvent& Changes ) catch (const UnknownPropertyException&) {} catch (const WrappedTargetException&) {} - tools::Long nOldCount = pCurSet->GetCount(); + sal_IntPtr nOldCount = pCurSet->GetCount(); bool bWasFinal = false; aRet >>= bWasFinal; |