diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2001-05-30 12:39:22 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2001-05-30 12:39:22 +0000 |
commit | 3b8bd7d0d429e15bd0be40c2cc01c1775feb7b5e (patch) | |
tree | c4c6856ef8b58a93b57a07163e86045d5b5fb5e4 /basic/source/runtime/iosys.cxx | |
parent | 711a491d54f1857e249459ec73ce7b0457de5663 (diff) |
#65293# corrected according the standart
Diffstat (limited to 'basic/source/runtime/iosys.cxx')
-rw-r--r-- | basic/source/runtime/iosys.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx index da90d7b1f420..4fc6c8ac3426 100644 --- a/basic/source/runtime/iosys.cxx +++ b/basic/source/runtime/iosys.cxx @@ -2,9 +2,9 @@ * * $RCSfile: iosys.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: ab $ $Date: 2001-05-30 10:44:49 $ + * last change: $Author: vg $ $Date: 2001-05-30 13:39:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -420,13 +420,13 @@ OslStream::OslStream( const String& rName, short nStrmMode ) } FileBase::RC nRet = maFile.open( nFlags ); - if( nRet == FileBase::RC::E_NOENT && nFlags != OpenFlag_Read ) + if( nRet == FileBase::E_NOENT && nFlags != OpenFlag_Read ) { nFlags |= OpenFlag_Create; nRet = maFile.open( nFlags ); } - if( nRet != FileBase::RC::E_None ) + if( nRet != FileBase::E_None ) { SetError( ERRCODE_IO_GENERAL ); } |