aboutsummaryrefslogtreecommitdiff
path: root/base/plugins.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 /base/plugins.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 'base/plugins.h')
-rw-r--r--base/plugins.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/plugins.h b/base/plugins.h
index 9fe4a287cb..5c5e94559f 100644
--- a/base/plugins.h
+++ b/base/plugins.h
@@ -23,7 +23,7 @@
#ifndef COMMON_PLUGINS_H
#define COMMON_PLUGINS_H
-#include "common/list.h"
+#include "common/array.h"
#include "common/singleton.h"
#include "common/util.h"
@@ -34,7 +34,7 @@ class OSystem;
struct GameSettings;
/** List of games. */
-typedef Common::List<GameSettings> GameList;
+typedef Common::Array<GameSettings> GameList;
/**
* A detected game. Carries the GameSettings, but also (optionally)
@@ -51,7 +51,7 @@ struct DetectedGame : GameSettings {
};
/** List of detected games. */
-typedef Common::List<DetectedGame> DetectedGameList;
+typedef Common::Array<DetectedGame> DetectedGameList;
/**
@@ -100,7 +100,7 @@ public:
/** List of plugins. */
-typedef Common::List<Plugin *> PluginList;
+typedef Common::Array<Plugin *> PluginList;
/**