summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorMichael Lefevre <lefevre00@yahoo.fr>2011-04-13 22:28:59 +0200
committerThorsten Behrens <tbehrens@novell.com>2011-04-14 12:41:44 +0200
commit737740f0418361df8885e34fbb6a918f9a7e13bb (patch)
tree0e782bb8b9da71c6ad3a94546e7a44c9a4c1eff5 /xmlhelp
parentefdf9eff81cb9214c14f719a72b769c136ed4b74 (diff)
Kill Pos_XXX in favour of osl_Pos_XXX
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/provider/inputstream.cxx4
1 files changed, 2 insertions, 2 deletions
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