summaryrefslogtreecommitdiff
path: root/basic
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
commitfdd7dfc17f192c1f91109964ba2b07c1d3c72f81 (patch)
tree5090aeec475cc5af5a8ad202933dc147ee1f84cf /basic
parent7136dc471580bf4f0546197a650b5dfe02d207c5 (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 8759f9dda5..1f3c22d112 100644
--- a/basic/source/runtime/iosys.cxx
+++ b/basic/source/runtime/iosys.cxx
@@ -392,7 +392,7 @@ sal_uIntPtr OslStream::SeekPos( sal_uIntPtr nPos )
if( nPos == STREAM_SEEK_TO_END )
maFile.setPos( Pos_End, 0 );
else
- maFile.setPos( Pos_Absolut, (sal_uInt64)nPos );
+ maFile.setPos( osl_Pos_Absolut, (sal_uInt64)nPos );
sal_uInt64 nRealPos(0);
maFile.getPos( nRealPos );
return sal::static_int_cast<sal_uIntPtr>(nRealPos);