summaryrefslogtreecommitdiff
path: root/include/sot
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-03-29 11:46:47 +0100
committerMatúš Kukan <matus.kukan@collabora.com>2014-03-29 11:50:30 +0100
commit3e71c1068a4691f19bef94b225770488aaa80390 (patch)
tree4692a5fd8c41fcf92095e995c9cc6943ef76aadb /include/sot
parent937d3d65b1fc52c821f67a618fad637ff7590d8c (diff)
Fix some types in virtual methods to properly override.
Thanks to SAL_OVERRIDE! Adapting to 1258b576aef2ff3cdd4f44e1c03edb8c862a79f6 Change-Id: Iafc9660312ad33f6136c15170c35a59e61c76b26
Diffstat (limited to 'include/sot')
-rw-r--r--include/sot/stg.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sot/stg.hxx b/include/sot/stg.hxx
index f2c72fffe8b3..2805d2acdda2 100644
--- a/include/sot/stg.hxx
+++ b/include/sot/stg.hxx
@@ -78,7 +78,7 @@ public:
TYPEINFO_OVERRIDE();
virtual sal_uLong Read( void * pData, sal_uLong nSize ) = 0;
virtual sal_uLong Write( const void* pData, sal_uLong nSize ) = 0;
- virtual sal_uLong Seek( sal_uLong nPos ) = 0;
+ virtual sal_uInt64 Seek( sal_uInt64 nPos ) = 0;
virtual sal_uLong Tell() = 0;
virtual void Flush() = 0;
virtual bool SetSize( sal_uLong nNewSize ) = 0;
@@ -160,7 +160,7 @@ public:
StorageStream( StgIo*, StgDirEntry*, StreamMode );
virtual sal_uLong Read( void * pData, sal_uLong nSize ) SAL_OVERRIDE;
virtual sal_uLong Write( const void* pData, sal_uLong nSize ) SAL_OVERRIDE;
- virtual sal_uLong Seek( sal_uLong nPos ) SAL_OVERRIDE;
+ virtual sal_uInt64 Seek( sal_uInt64 nPos ) SAL_OVERRIDE;
virtual sal_uLong Tell() SAL_OVERRIDE { return nPos; }
virtual void Flush() SAL_OVERRIDE;
virtual bool SetSize( sal_uLong nNewSize ) SAL_OVERRIDE;
@@ -255,7 +255,7 @@ public:
virtual sal_uLong Read( void * pData, sal_uLong nSize ) SAL_OVERRIDE;
virtual sal_uLong Write( const void* pData, sal_uLong nSize ) SAL_OVERRIDE;
- virtual sal_uLong Seek( sal_uLong nPos ) SAL_OVERRIDE;
+ virtual sal_uInt64 Seek( sal_uInt64 nPos ) SAL_OVERRIDE;
virtual sal_uLong Tell() SAL_OVERRIDE;
virtual void Flush() SAL_OVERRIDE;
virtual bool SetSize( sal_uLong nNewSize ) SAL_OVERRIDE;