diff options
author | Michael Lefevre <lefevre00@yahoo.fr> | 2011-04-13 22:29:00 +0200 |
---|---|---|
committer | Thorsten Behrens <tbehrens@novell.com> | 2011-04-14 12:42:39 +0200 |
commit | 1caa3ccec50d9917da7f3f4c2b83b09d35497996 (patch) | |
tree | 0b33af27872a7d545cc252e7986270c7ba606b3e /comphelper | |
parent | 33b3150275821025c0423199dbd6b1ef7a8e117b (diff) |
Kill Pos_XXX in favour of osl_Pos_XXX
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/streaming/oslfile2streamwrap.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/streaming/oslfile2streamwrap.cxx b/comphelper/source/streaming/oslfile2streamwrap.cxx index 40858acd338b..168a12dec161 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_Pos_Absolut, nNewPos); + FileBase::RC eError = m_pFile->setPos(osl_osl_Pos_Absolut, nNewPos); if (eError != FileBase::E_None) { throw stario::NotConnectedException(::rtl::OUString(), static_cast<staruno::XWeak*>(this)); @@ -149,7 +149,7 @@ sal_Int32 SAL_CALL OSLInputStreamWrapper::available() throw( stario::NotConnecte throw stario::NotConnectedException(::rtl::OUString(),static_cast<staruno::XWeak*>(this)); nAvailable = nAvailable - nPos; - eError = m_pFile->setPos(Pos_Absolut, nPos); + eError = m_pFile->setPos(osl_Pos_Absolut, nPos); if (eError != FileBase::E_None) throw stario::NotConnectedException(::rtl::OUString(),static_cast<staruno::XWeak*>(this)); return sal::static_int_cast< sal_Int32 >( |