aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/fs.h
diff options
context:
space:
mode:
authorMax Horn2004-04-09 15:10:23 +0000
committerMax Horn2004-04-09 15:10:23 +0000
commit8a69ffc46c57fb550b5b50a724b908e404bc3c67 (patch)
treeac88deb742ef652e1487c35f8170dbceec8d262b /backends/fs/fs.h
parenta05c6e5406da6457cc492cff8e0a212d092e8577 (diff)
downloadscummvm-rg350-8a69ffc46c57fb550b5b50a724b908e404bc3c67.tar.gz
scummvm-rg350-8a69ffc46c57fb550b5b50a724b908e404bc3c67.tar.bz2
scummvm-rg350-8a69ffc46c57fb550b5b50a724b908e404bc3c67.zip
Renamed template class 'List' to 'Array', since that is really what it is (a resizable array, not a linked list)
svn-id: r13520
Diffstat (limited to 'backends/fs/fs.h')
-rw-r--r--backends/fs/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/fs/fs.h b/backends/fs/fs.h
index c6b35e6a02..ba9cb6dd4c 100644
--- a/backends/fs/fs.h
+++ b/backends/fs/fs.h
@@ -55,7 +55,7 @@
* i.e. the root dir is usually not the best starting point for browsing.
*/
-#include "common/list.h"
+#include "common/array.h"
#include "common/str.h"
class FSList;
@@ -149,7 +149,7 @@ public:
/**
* Sorted list of multiple file system nodes. E.g. the contents of a given directory.
*/
-class FSList : private Common::List<FilesystemNode *> {
+class FSList : private Common::Array<FilesystemNode *> {
public:
class const_iterator {
friend class FSList;