diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-03-29 11:46:47 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-03-29 11:50:30 +0100 |
commit | 3e71c1068a4691f19bef94b225770488aaa80390 (patch) | |
tree | 4692a5fd8c41fcf92095e995c9cc6943ef76aadb /include/svl | |
parent | 937d3d65b1fc52c821f67a618fad637ff7590d8c (diff) |
Fix some types in virtual methods to properly override.
Thanks to SAL_OVERRIDE!
Adapting to 1258b576aef2ff3cdd4f44e1c03edb8c862a79f6
Change-Id: Iafc9660312ad33f6136c15170c35a59e61c76b26
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/instrm.hxx | 2 | ||||
-rw-r--r-- | include/svl/strmadpt.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/instrm.hxx b/include/svl/instrm.hxx index 9571e54a57fa..222f79afe8e4 100644 --- a/include/svl/instrm.hxx +++ b/include/svl/instrm.hxx @@ -39,7 +39,7 @@ class SVL_DLLPUBLIC SvInputStream: public SvStream com::sun::star::uno::Reference< com::sun::star::io::XSeekable > m_xSeekable; SvDataPipe_Impl * m_pPipe; - sal_uLong m_nSeekedFrom; + sal_uInt64 m_nSeekedFrom; SVL_DLLPRIVATE bool open(); diff --git a/include/svl/strmadpt.hxx b/include/svl/strmadpt.hxx index 872a8506cc3c..9d1645bda956 100644 --- a/include/svl/strmadpt.hxx +++ b/include/svl/strmadpt.hxx @@ -43,10 +43,10 @@ public: rTheOutputStream): m_xOutputStream(rTheOutputStream), m_nPosition(0) {} - virtual ErrCode ReadAt(sal_uInt64, void *, sal_uLong, sal_uInt64 *) const SAL_OVERRIDE; + virtual ErrCode ReadAt(sal_uInt64, void *, sal_uLong, sal_Size *) const SAL_OVERRIDE; virtual ErrCode WriteAt(sal_uInt64 nPos, const void * pBuffer, sal_uLong nCount, - sal_uInt64 * pWritten) SAL_OVERRIDE; + sal_Size * pWritten) SAL_OVERRIDE; virtual ErrCode Flush() const SAL_OVERRIDE; |