aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/symbian/symbian-fs-factory.cpp
diff options
context:
space:
mode:
authorMax Horn2008-08-22 11:49:34 +0000
committerMax Horn2008-08-22 11:49:34 +0000
commit16e02f051d88c04c4a3eb7fbe319bb6b338d79ae (patch)
treea426233615e9b2a741d443f6ad466fa06a5087fe /backends/fs/symbian/symbian-fs-factory.cpp
parent79751b07aef33512e2ded0867bbca0c50723f314 (diff)
downloadscummvm-rg350-16e02f051d88c04c4a3eb7fbe319bb6b338d79ae.tar.gz
scummvm-rg350-16e02f051d88c04c4a3eb7fbe319bb6b338d79ae.tar.bz2
scummvm-rg350-16e02f051d88c04c4a3eb7fbe319bb6b338d79ae.zip
Turned SymbianFilesystemFactory from a singleton into a normal class; adapted symbian backend accordingly
svn-id: r34101
Diffstat (limited to 'backends/fs/symbian/symbian-fs-factory.cpp')
-rw-r--r--backends/fs/symbian/symbian-fs-factory.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/backends/fs/symbian/symbian-fs-factory.cpp b/backends/fs/symbian/symbian-fs-factory.cpp
index 0a1bd62134..c31dfb594a 100644
--- a/backends/fs/symbian/symbian-fs-factory.cpp
+++ b/backends/fs/symbian/symbian-fs-factory.cpp
@@ -26,8 +26,6 @@
#include "backends/fs/symbian/symbian-fs-factory.h"
#include "backends/fs/symbian/symbian-fs.cpp"
-DECLARE_SINGLETON(SymbianFilesystemFactory);
-
AbstractFilesystemNode *SymbianFilesystemFactory::makeRootFileNode() const {
return new SymbianFilesystemNode(true);
}
@@ -38,7 +36,7 @@ AbstractFilesystemNode *SymbianFilesystemFactory::makeCurrentDirectoryFileNode()
return new SymbianFilesystemNode(path);
}
-AbstractFilesystemNode *SymbianFilesystemFactory::makeFileNodePath(const String &path) const {
+AbstractFilesystemNode *SymbianFilesystemFactory::makeFileNodePath(const Common::String &path) const {
return new SymbianFilesystemNode(path);
}
#endif