summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-12-04 09:49:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-12-05 07:52:16 +0100
commit36b21429c2c423271786e29c6a480b4b689a8ab8 (patch)
tree5a10d1d8c5e9485fbe6b91d6c001537d8f36ae03 /tools
parentf22f5a8a1c25d0a68d64d82bd824f5e153cf9959 (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 'tools')
-rw-r--r--tools/source/stream/stream.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index 4fd9890a865b..7eaef59e5883 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -241,7 +241,7 @@ ErrCode SvLockBytes::SetSize(sal_uInt64 const nSize)
return m_pStream->GetErrorCode();
}
-ErrCode SvLockBytes::Stat(SvLockBytesStat * pStat, SvLockBytesStatFlag) const
+ErrCode SvLockBytes::Stat(SvLockBytesStat * pStat) const
{
if (!m_pStream)
{
@@ -294,7 +294,7 @@ sal_uInt64 SvStream::SeekPos(sal_uInt64 const nPos)
{
DBG_ASSERT( m_xLockBytes.is(), "pure virtual function" );
SvLockBytesStat aStat;
- m_xLockBytes->Stat( &aStat, SVSTATFLAG_DEFAULT );
+ m_xLockBytes->Stat( &aStat );
m_nActPos = aStat.nSize;
}
else