diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-04 09:49:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-05 07:52:16 +0100 |
commit | 36b21429c2c423271786e29c6a480b4b689a8ab8 (patch) | |
tree | 5a10d1d8c5e9485fbe6b91d6c001537d8f36ae03 /forms/source | |
parent | f22f5a8a1c25d0a68d64d82bd824f5e153cf9959 (diff) |
remove unused SvLockBytesStatFlag enum
Change-Id: I90b82f1bbf4b51fc76cde10ec55448053345018c
Reviewed-on: https://gerrit.libreoffice.org/64561
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'forms/source')
-rw-r--r-- | forms/source/component/imgprod.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/component/imgprod.cxx b/forms/source/component/imgprod.cxx index dc51b5ef47e2..c4ae8ee9e008 100644 --- a/forms/source/component/imgprod.cxx +++ b/forms/source/component/imgprod.cxx @@ -48,7 +48,7 @@ public: virtual ErrCode WriteAt( sal_uInt64 nPos, const void* pBuffer, std::size_t nCount, std::size_t * pWritten ) override; virtual ErrCode Flush() const override; virtual ErrCode SetSize( sal_uInt64 nSize ) override; - virtual ErrCode Stat( SvLockBytesStat*, SvLockBytesStatFlag ) const override; + virtual ErrCode Stat( SvLockBytesStat* ) const override; }; @@ -144,10 +144,10 @@ ErrCode ImgProdLockBytes::SetSize(sal_uInt64 const nSize) } -ErrCode ImgProdLockBytes::Stat( SvLockBytesStat* pStat, SvLockBytesStatFlag eFlag ) const +ErrCode ImgProdLockBytes::Stat( SvLockBytesStat* pStat ) const { if( GetStream() ) - return SvLockBytes::Stat( pStat, eFlag ); + return SvLockBytes::Stat( pStat ); else { DBG_ASSERT( xStmRef.is(), "ImgProdLockBytes::Stat: xInputStream has no reference..." ); |