summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorMichael Lefevre <lefevre00@yahoo.fr>2011-04-13 22:43:56 +0200
committerThorsten Behrens <tbehrens@novell.com>2011-04-14 12:45:57 +0200
commit0a6f4e361634e126a588f3a11420a016688971a6 (patch)
treed5dec9ff043d582b136275727a5ebe99cc1e85c9 /basic
parentfdd7dfc17f192c1f91109964ba2b07c1d3c72f81 (diff)
Kill Pos_XXX in favour of osl_Pos_XXX
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/iosys.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx
index 1f3c22d112..ea7538e226 100644
--- a/basic/source/runtime/iosys.cxx
+++ b/basic/source/runtime/iosys.cxx
@@ -390,7 +390,7 @@ sal_uIntPtr OslStream::PutData( const void* pData, sal_uIntPtr nSize )
sal_uIntPtr OslStream::SeekPos( sal_uIntPtr nPos )
{
if( nPos == STREAM_SEEK_TO_END )
- maFile.setPos( Pos_End, 0 );
+ maFile.setPos( osl_Pos_End, 0 );
else
maFile.setPos( osl_Pos_Absolut, (sal_uInt64)nPos );
sal_uInt64 nRealPos(0);