summaryrefslogtreecommitdiff
path: root/sal/workben
diff options
context:
space:
mode:
authorMichael Lefevre <lefevre00@yahoo.fr>2011-04-13 22:28:58 +0200
committerThorsten Behrens <tbehrens@novell.com>2011-04-14 12:40:50 +0200
commite768e1b918583fdbf902662c57957a74f1981f92 (patch)
tree9b0efc75c6f1a5d8ee3beba8ded205af0c4eafff /sal/workben
parent20029b1a1eb8ad37a1ad3af4ac3e29151b71ff34 (diff)
Kill Pos_XXX in favour of osl_Pos_XXX
Diffstat (limited to 'sal/workben')
-rw-r--r--sal/workben/testfile.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/workben/testfile.cxx b/sal/workben/testfile.cxx
index 83a92742fd6f..7c760ace6f2a 100644
--- a/sal/workben/testfile.cxx
+++ b/sal/workben/testfile.cxx
@@ -193,7 +193,7 @@ sal_Bool Initialize( void )
uBytesRequested=aStatus.getFileSize();
// read ini-File
- rc=pFile->setPos( Pos_Absolut, 0 );
+ rc=pFile->setPos( osl_Pos_Absolut, 0 );
pBuffer=(sal_Char*) rtl_allocateMemory( (sal_uInt32) (uBytesRequested+1)*sizeof(sal_Char) );
rtl_zeroMemory( pBuffer, (sal_uInt32)(uBytesRequested+1)*sizeof(sal_Char) );
@@ -846,7 +846,7 @@ void FileWriteAndReadTest( void )
// move the filepointer to the beginning
//----------------------------------------------------
- rc=pFile->setPos( Pos_Absolut , 0 );
+ rc=pFile->setPos( osl_Pos_Absolut , 0 );
print_error( rtl::OString( "Set FilePointer to the beginning of the file" ), rc );
printf( "\n" );