aboutsummaryrefslogtreecommitdiff
path: root/backends/fs
diff options
context:
space:
mode:
authorMax Horn2003-10-02 17:43:02 +0000
committerMax Horn2003-10-02 17:43:02 +0000
commit0e645f88ae1586dbac2bf0855fd0fda1f8f11eeb (patch)
treecef3882f5cb527ab9ced0c208d6f9c045bf8f3c4 /backends/fs
parentf26d3d1784756fccaaf306f6b13a28cb709ad5bc (diff)
downloadscummvm-rg350-0e645f88ae1586dbac2bf0855fd0fda1f8f11eeb.tar.gz
scummvm-rg350-0e645f88ae1586dbac2bf0855fd0fda1f8f11eeb.tar.bz2
scummvm-rg350-0e645f88ae1586dbac2bf0855fd0fda1f8f11eeb.zip
renamed namespace ScummVM to Common
svn-id: r10544
Diffstat (limited to 'backends/fs')
-rw-r--r--backends/fs/fs.h4
-rw-r--r--backends/fs/palmos/palmos-fs.cpp2
-rw-r--r--backends/fs/posix/posix-fs.cpp2
-rw-r--r--backends/fs/windows/windows-fs.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/backends/fs/fs.h b/backends/fs/fs.h
index be543c67c4..6a5ab500d0 100644
--- a/backends/fs/fs.h
+++ b/backends/fs/fs.h
@@ -65,7 +65,7 @@ class FSList;
*/
class FilesystemNode {
protected:
- typedef ScummVM::String String;
+ typedef Common::String String;
public:
@@ -146,7 +146,7 @@ public:
/*
* A sorted list of multiple file system nodes. E.g. the contents of a given directory.
*/
-class FSList : ScummVM::List<FilesystemNode *> {
+class FSList : Common::List<FilesystemNode *> {
public:
~FSList() {
for (int i = 0; i < _size; i++)
diff --git a/backends/fs/palmos/palmos-fs.cpp b/backends/fs/palmos/palmos-fs.cpp
index 5f634a8ca9..5972917784 100644
--- a/backends/fs/palmos/palmos-fs.cpp
+++ b/backends/fs/palmos/palmos-fs.cpp
@@ -124,7 +124,7 @@ FSList *PalmOSFilesystemNode::listDir(ListMode mode) const {
return myList;
}
-const char *lastPathComponent(const ScummVM::String &str) {
+const char *lastPathComponent(const Common::String &str) {
const char *start = str.c_str();
const char *cur = start + str.size() - 2;
diff --git a/backends/fs/posix/posix-fs.cpp b/backends/fs/posix/posix-fs.cpp
index d560db51c5..26b3075436 100644
--- a/backends/fs/posix/posix-fs.cpp
+++ b/backends/fs/posix/posix-fs.cpp
@@ -64,7 +64,7 @@ public:
};
-static const char *lastPathComponent(const ScummVM::String &str) {
+static const char *lastPathComponent(const Common::String &str) {
const char *start = str.c_str();
const char *cur = start + str.size() - 2;
diff --git a/backends/fs/windows/windows-fs.cpp b/backends/fs/windows/windows-fs.cpp
index a4479adac1..6e18e6cb4c 100644
--- a/backends/fs/windows/windows-fs.cpp
+++ b/backends/fs/windows/windows-fs.cpp
@@ -184,7 +184,7 @@ FSList *WindowsFilesystemNode::listDir(ListMode mode) const {
return myList;
}
-const char *lastPathComponent(const ScummVM::String &str) {
+const char *lastPathComponent(const Common::String &str) {
const char *start = str.c_str();
const char *cur = start + str.size() - 2;