From 737740f0418361df8885e34fbb6a918f9a7e13bb Mon Sep 17 00:00:00 2001 From: Michael Lefevre Date: Wed, 13 Apr 2011 22:28:59 +0200 Subject: Kill Pos_XXX in favour of osl_Pos_XXX --- xmlhelp/source/cxxhelp/provider/inputstream.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmlhelp/source') diff --git a/xmlhelp/source/cxxhelp/provider/inputstream.cxx b/xmlhelp/source/cxxhelp/provider/inputstream.cxx index 8cba751dff67..25e0397ec908 100644 --- a/xmlhelp/source/cxxhelp/provider/inputstream.cxx +++ b/xmlhelp/source/cxxhelp/provider/inputstream.cxx @@ -178,7 +178,7 @@ XInputStream_impl::seek( { if( location < 0 ) throw lang::IllegalArgumentException(); - if( osl::FileBase::E_None != m_aFile.setPos( Pos_Absolut, sal_uInt64( location ) ) ) + if( osl::FileBase::E_None != m_aFile.setPos( osl_Pos_Absolut, sal_uInt64( location ) ) ) throw io::IOException(); } @@ -216,7 +216,7 @@ XInputStream_impl::getLength( if( err != osl::FileBase::E_None ) throw io::IOException(); - err = m_aFile.setPos( Pos_Absolut, uCurrentPos ); + err = m_aFile.setPos( osl_Pos_Absolut, uCurrentPos ); if( err != osl::FileBase::E_None ) throw io::IOException(); else -- cgit