aboutsummaryrefslogtreecommitdiff
path: root/backends/fs
diff options
context:
space:
mode:
authorJoost Peters2010-04-12 11:43:14 +0000
committerJoost Peters2010-04-12 11:43:14 +0000
commitfe566293e71ecb481d67f3c748759986acd92f0f (patch)
tree4bfe3ea27881b2bfa90b9cf730aebfe65909cb0f /backends/fs
parentf966f3184f5bc97c1e1ec85618c2f6fc581bba1c (diff)
downloadscummvm-rg350-fe566293e71ecb481d67f3c748759986acd92f0f.tar.gz
scummvm-rg350-fe566293e71ecb481d67f3c748759986acd92f0f.tar.bz2
scummvm-rg350-fe566293e71ecb481d67f3c748759986acd92f0f.zip
remove useless getObjectName() method
svn-id: r48640
Diffstat (limited to 'backends/fs')
-rw-r--r--backends/fs/psp/psp-fs-factory.h1
-rw-r--r--backends/fs/psp/psp-fs.cpp1
-rw-r--r--backends/fs/psp/psp-stream.h1
3 files changed, 0 insertions, 3 deletions
diff --git a/backends/fs/psp/psp-fs-factory.h b/backends/fs/psp/psp-fs-factory.h
index 2e8d5d9efc..36ecb8188b 100644
--- a/backends/fs/psp/psp-fs-factory.h
+++ b/backends/fs/psp/psp-fs-factory.h
@@ -35,7 +35,6 @@
*/
class PSPFilesystemFactory : public FilesystemFactory, public Common::Singleton<PSPFilesystemFactory> {
public:
- const char *getObjectName() const { return "PSPFilesystemFactory"; }
virtual AbstractFSNode *makeRootFileNode() const;
virtual AbstractFSNode *makeCurrentDirectoryFileNode() const;
virtual AbstractFSNode *makeFileNodePath(const Common::String &path) const;
diff --git a/backends/fs/psp/psp-fs.cpp b/backends/fs/psp/psp-fs.cpp
index 64983f7144..a2b00209b0 100644
--- a/backends/fs/psp/psp-fs.cpp
+++ b/backends/fs/psp/psp-fs.cpp
@@ -66,7 +66,6 @@ public:
*/
PSPFilesystemNode(const Common::String &p, bool verify = true);
- const char *getObjectName() const { return "PSPFileSystemNode"; }
virtual bool exists() const;
virtual Common::String getDisplayName() const { return _displayName; }
virtual Common::String getName() const { return _displayName; }
diff --git a/backends/fs/psp/psp-stream.h b/backends/fs/psp/psp-stream.h
index 9fcdd6d606..673630b685 100644
--- a/backends/fs/psp/psp-stream.h
+++ b/backends/fs/psp/psp-stream.h
@@ -56,7 +56,6 @@ protected:
public:
- const char *getObjectName() const { return "PSPIoStream"; }
/**
* Given a path, invoke fopen on that path and wrap the result in a
* PSPIoStream instance.