diff options
author | David Tardon <dtardon@redhat.com> | 2011-04-14 15:18:27 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-04-14 15:18:27 +0200 |
commit | 416c0f6b75f35e5680ee81d6080bbce02db06d1f (patch) | |
tree | 93cdc325f75ec86fc50aaee8b38ea6bef580b32b | |
parent | 5eb46770effb2f5e47ed9b1b7a06ffeb64be3f50 (diff) |
fix typo
-rw-r--r-- | comphelper/source/streaming/oslfile2streamwrap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/streaming/oslfile2streamwrap.cxx b/comphelper/source/streaming/oslfile2streamwrap.cxx index f6e55c2aac63..68af33298336 100644 --- a/comphelper/source/streaming/oslfile2streamwrap.cxx +++ b/comphelper/source/streaming/oslfile2streamwrap.cxx @@ -114,7 +114,7 @@ void SAL_CALL OSLInputStreamWrapper::skipBytes(sal_Int32 nBytesToSkip) throw( st m_pFile->getPos(nCurrentPos); sal_uInt64 nNewPos = nCurrentPos + nBytesToSkip; - FileBase::RC eError = m_pFile->setPos(osl_osl_Pos_Absolut, nNewPos); + FileBase::RC eError = m_pFile->setPos(osl_Pos_Absolut, nNewPos); if (eError != FileBase::E_None) { throw stario::NotConnectedException(::rtl::OUString(), static_cast<staruno::XWeak*>(this)); |