diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-10-04 11:34:57 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-10-27 13:59:09 +0100 |
commit | 7e89e2827489d0b3bbd488f6c9e5a9e7e404d732 (patch) | |
tree | ca34b4ec312dffbe8e71a8106a4c3d21478d64a1 /include | |
parent | 99628775132143936fcd00ca9e18a853616418e4 (diff) |
sal_uIntPtr to sal_uInt64, sal_uLong to sal_Size for streams
Change-Id: I062f1f6c5b20ca47734a9a3cd1a229d51763a206
Diffstat (limited to 'include')
-rw-r--r-- | include/tools/stream.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx index 2ac01dbbfe41..9867a37fd318 100644 --- a/include/tools/stream.hxx +++ b/include/tools/stream.hxx @@ -695,7 +695,7 @@ public: virtual void ResetError() override; const void* GetBuffer(); - sal_uIntPtr GetSize(); + sal_uInt64 GetSize(); sal_Size GetEndOfData() const { return nEndOfData; } const void* GetData() { Flush(); return pBuf; } operator const void*() { Flush(); return pBuf; } |