summaryrefslogtreecommitdiff
path: root/sot/source/sdstor/stgole.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sot/source/sdstor/stgole.hxx')
-rw-r--r--sot/source/sdstor/stgole.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sot/source/sdstor/stgole.hxx b/sot/source/sdstor/stgole.hxx
index 80a090ea3943..30d8ab3336cb 100644
--- a/sot/source/sdstor/stgole.hxx
+++ b/sot/source/sdstor/stgole.hxx
@@ -28,8 +28,8 @@
class StgInternalStream : public SvStream
{
BaseStorageStream* m_pStrm;
- virtual sal_uLong GetData( void* pData, sal_uLong nSize ) override;
- virtual sal_uLong PutData( const void* pData, sal_uLong nSize ) override;
+ virtual std::size_t GetData(void* pData, std::size_t nSize) override;
+ virtual std::size_t PutData(const void* pData, std::size_t nSize) override;
virtual sal_uInt64 SeekPos( sal_uInt64 nPos ) override;
virtual void FlushData() override;
public: