From ab7d6b0d4fa8c91306f7b4f460a4596abc159912 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Wed, 14 Sep 2016 19:47:52 +0200 Subject: tools: SvFileStream::LockRange/UnlockRange take 64 bit positions Change-Id: I85d9cc00daaaa127817aaaa6f54d3e6f86907fb6 --- include/tools/stream.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx index 6a37b265a03a..2154c6f9cccb 100644 --- a/include/tools/stream.hxx +++ b/include/tools/stream.hxx @@ -573,8 +573,8 @@ private: SvFileStream (const SvFileStream&) = delete; SvFileStream & operator= (const SvFileStream&) = delete; - bool LockRange( std::size_t nByteOffset, std::size_t nBytes ); - bool UnlockRange( std::size_t nByteOffset, std::size_t nBytes ); + bool LockRange( sal_uInt64 nByteOffset, std::size_t nBytes ); + bool UnlockRange( sal_uInt64 nByteOffset, std::size_t nBytes ); bool LockFile(); void UnlockFile(); -- cgit