summaryrefslogtreecommitdiff
path: root/unotools/source/streaming
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-04-13 09:13:17 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-04-13 09:13:17 +0100
commit7ca04cee7a68bcb9a2fdbbf7572cf60b739b1732 (patch)
treeb7a74263fbd54dce19ae41215a351a09b95f87e8 /unotools/source/streaming
parentb8d4d2100527e5d5221d28d12dc70513e0d4be8b (diff)
WaE: set but unused in dbgutil mode
Diffstat (limited to 'unotools/source/streaming')
-rw-r--r--unotools/source/streaming/streamwrap.cxx8
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
}
//------------------------------------------------------------------------------