diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-04-13 09:13:17 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-04-13 09:13:17 +0100 |
commit | 7ca04cee7a68bcb9a2fdbbf7572cf60b739b1732 (patch) | |
tree | b7a74263fbd54dce19ae41215a351a09b95f87e8 /unotools | |
parent | b8d4d2100527e5d5221d28d12dc70513e0d4be8b (diff) |
WaE: set but unused in dbgutil mode
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/streaming/streamwrap.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/unotools/source/streaming/streamwrap.cxx b/unotools/source/streaming/streamwrap.cxx index fc29a63bb1ac..812397f63839 100644 --- a/unotools/source/streaming/streamwrap.cxx +++ b/unotools/source/streaming/streamwrap.cxx @@ -116,16 +116,8 @@ void SAL_CALL OInputStreamWrapper::skipBytes(sal_Int32 nBytesToSkip) throw( star ::osl::MutexGuard aGuard( m_aMutex ); checkError(); -#ifdef DBG_UTIL - sal_uInt32 nCurrentPos = m_pSvStream->Tell(); -#endif - m_pSvStream->SeekRel(nBytesToSkip); checkError(); - -#ifdef DBG_UTIL - nCurrentPos = m_pSvStream->Tell(); -#endif } //------------------------------------------------------------------------------ |