aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/psp
diff options
context:
space:
mode:
authorDavid Corrales2007-05-12 18:17:40 +0000
committerDavid Corrales2007-05-12 18:17:40 +0000
commit86324f00bc561c03b281170125ef2fde14cae132 (patch)
treeae825cd2ad0501f869581e8ac0d71bc7d32433d6 /backends/fs/psp
parentc459f054b46b8791ce206c2ee13d455a9c10fe4d (diff)
downloadscummvm-rg350-86324f00bc561c03b281170125ef2fde14cae132.tar.gz
scummvm-rg350-86324f00bc561c03b281170125ef2fde14cae132.tar.bz2
scummvm-rg350-86324f00bc561c03b281170125ef2fde14cae132.zip
Renamed files and minor tweaks. Thanks LordHoto :)
svn-id: r26810
Diffstat (limited to 'backends/fs/psp')
-rw-r--r--backends/fs/psp/psp-fs-factory.cpp (renamed from backends/fs/psp/PSPFilesystemFactory.cpp)2
-rw-r--r--backends/fs/psp/psp-fs-factory.h (renamed from backends/fs/psp/PSPFilesystemFactory.h)13
2 files changed, 5 insertions, 10 deletions
diff --git a/backends/fs/psp/PSPFilesystemFactory.cpp b/backends/fs/psp/psp-fs-factory.cpp
index 5a3802c10a..2a0307d3f4 100644
--- a/backends/fs/psp/PSPFilesystemFactory.cpp
+++ b/backends/fs/psp/psp-fs-factory.cpp
@@ -1,4 +1,4 @@
-#include "backends/fs/psp/PSPFilesystemFactory.h"
+#include "backends/fs/psp/psp-fs-factory.h"
#include "backends/fs/psp/psp_fs.cpp"
PSPFilesystemFactory *PSPFilesystemFactory::_instance = 0;
diff --git a/backends/fs/psp/PSPFilesystemFactory.h b/backends/fs/psp/psp-fs-factory.h
index 70358c90ed..05388fa697 100644
--- a/backends/fs/psp/PSPFilesystemFactory.h
+++ b/backends/fs/psp/psp-fs-factory.h
@@ -1,7 +1,7 @@
-#ifndef PSPFILESYSTEMFACTORY_H_
-#define PSPFILESYSTEMFACTORY_H_
+#ifndef PSP_FILESYSTEM_FACTORY_H
+#define PSP_FILESYSTEM_FACTORY_H
-#include "backends/fs/AbstractFilesystemFactory.h"
+#include "backends/fs/abstract-fs-factory.h"
/**
* Creates PSPFilesystemNode objects.
@@ -18,11 +18,6 @@ public:
* @return A unique instance of PSPFilesytemFactory.
*/
static PSPFilesystemFactory *instance();
-
- /**
- * Destructor.
- */
- virtual ~PSPFilesystemFactory() {};
virtual AbstractFilesystemNode *makeRootFileNode() const;
virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const;
@@ -35,4 +30,4 @@ private:
static PSPFilesystemFactory *_instance;
};
-#endif /*PSPFILESYSTEMFACTORY_H_*/
+#endif /*PSP_FILESYSTEM_FACTORY_H*/