summaryrefslogtreecommitdiff
path: root/sot/source/base/filelist.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sot/source/base/filelist.cxx')
-rw-r--r--sot/source/base/filelist.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sot/source/base/filelist.cxx b/sot/source/base/filelist.cxx
index 07558b17f0ae..6fe95dfab89d 100644
--- a/sot/source/base/filelist.cxx
+++ b/sot/source/base/filelist.cxx
@@ -42,7 +42,7 @@ SvStream& ReadFileList( SvStream& rIStm, FileList& rFileList )
OUStringBuffer sBuf(512);
sal_uInt16 c;
- while (!rIStm.IsEof())
+ while (!rIStm.eof())
{
// read first character of filepath; c==0 > reach end of stream
rIStm.ReadUInt16( c );
@@ -50,7 +50,7 @@ SvStream& ReadFileList( SvStream& rIStm, FileList& rFileList )
break;
// read string till c==0
- while (c && !rIStm.IsEof())
+ while (c && !rIStm.eof())
{
sBuf.append((sal_Unicode)c);
rIStm.ReadUInt16( c );