aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/symbian/symbian-fs.cpp
diff options
context:
space:
mode:
authorLars Persson2008-09-11 21:32:40 +0000
committerLars Persson2008-09-11 21:32:40 +0000
commit169edfccf30e9355e7d77d8b48615b0bda7b52bd (patch)
treef8a4dc7bdd638e328eaa12b3d605f84ce720b515 /backends/fs/symbian/symbian-fs.cpp
parent73174eb8ef95ea05a969ab1d2a423a39287627ce (diff)
downloadscummvm-rg350-169edfccf30e9355e7d77d8b48615b0bda7b52bd.tar.gz
scummvm-rg350-169edfccf30e9355e7d77d8b48615b0bda7b52bd.tar.bz2
scummvm-rg350-169edfccf30e9355e7d77d8b48615b0bda7b52bd.zip
Added SymbianStream.h for SymbianStdioStream definition
Renamed Symbian stream implementation to SymbianStdioStream instead of StdioStream. svn-id: r34498
Diffstat (limited to 'backends/fs/symbian/symbian-fs.cpp')
-rw-r--r--backends/fs/symbian/symbian-fs.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/backends/fs/symbian/symbian-fs.cpp b/backends/fs/symbian/symbian-fs.cpp
index ddbbe7071d..1c6d8435a9 100644
--- a/backends/fs/symbian/symbian-fs.cpp
+++ b/backends/fs/symbian/symbian-fs.cpp
@@ -24,8 +24,8 @@
#if defined (__SYMBIAN32__)
#include "backends/fs/abstract-fs.h"
-#include "backends/fs/stdiostream.h"
-#include "backends/platform/symbian/src/SymbianOS.h"
+#include "backends/fs/symbian/symbianstream.h"
+#include "backends/platform/symbian/src/symbianos.h"
#include <dirent.h>
#include <eikenv.h>
@@ -253,11 +253,12 @@ AbstractFilesystemNode *SymbianFilesystemNode::getParent() const {
}
Common::SeekableReadStream *SymbianFilesystemNode::openForReading() {
- return StdioStream::makeFromPath(getPath().c_str(), false);
+ return SymbianStdioStream::makeFromPath(getPath().c_str(), false);
}
Common::WriteStream *SymbianFilesystemNode::openForWriting() {
- return StdioStream::makeFromPath(getPath().c_str(), true);
+ return SymbianStdioStream::makeFromPath(getPath().c_str(), true);
}
-
#endif //#if defined (__SYMBIAN32__)
+
+