diff options
Diffstat (limited to 'backends')
-rw-r--r-- | backends/fs/fs.h | 4 | ||||
-rw-r--r-- | backends/wince/CEkeys/KeysBuffer.h | 1 |
2 files changed, 2 insertions, 3 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; diff --git a/backends/wince/CEkeys/KeysBuffer.h b/backends/wince/CEkeys/KeysBuffer.h index b8c56109d0..05da70296a 100644 --- a/backends/wince/CEkeys/KeysBuffer.h +++ b/backends/wince/CEkeys/KeysBuffer.h @@ -25,7 +25,6 @@ #include "common/stdafx.h" #include "common/scummsys.h" #include "common/system.h" -#include "common/list.h" #include "Key.h" |