diff options
author | Max Horn | 2009-01-23 03:41:36 +0000 |
---|---|---|
committer | Max Horn | 2009-01-23 03:41:36 +0000 |
commit | 8f16458e9ba830fe80f177cc2fc3bcf2af84ebef (patch) | |
tree | 36236e2af1589bca848ce28d7606ef6e789431e8 /backends/platform/PalmOS | |
parent | e4b013f616818f6da4cf7a1896f31d1429ef8f04 (diff) | |
download | scummvm-rg350-8f16458e9ba830fe80f177cc2fc3bcf2af84ebef.tar.gz scummvm-rg350-8f16458e9ba830fe80f177cc2fc3bcf2af84ebef.tar.bz2 scummvm-rg350-8f16458e9ba830fe80f177cc2fc3bcf2af84ebef.zip |
Renamed FSNode::openForReading / openForWriting to createReadStream / createWriteStream, again to make ownership of the returned stream clear
svn-id: r36014
Diffstat (limited to 'backends/platform/PalmOS')
-rw-r--r-- | backends/platform/PalmOS/Src/be_base.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/PalmOS/Src/be_base.cpp b/backends/platform/PalmOS/Src/be_base.cpp index c1a694292f..424c70566c 100644 --- a/backends/platform/PalmOS/Src/be_base.cpp +++ b/backends/platform/PalmOS/Src/be_base.cpp @@ -183,10 +183,10 @@ Common::TimerManager *OSystem_PalmBase::getTimerManager() { Common::SeekableReadStream *OSystem_PalmBase::createConfigReadStream() { Common::FSNode file(PALMOS_CONFIG_FILE); - return file.openForReading(); + return file.createReadStream(); } Common::WriteStream *OSystem_PalmBase::createConfigWriteStream() { Common::FSNode file(PALMOS_CONFIG_FILE); - return file.openForWriting(); + return file.createWriteStream(); } |