aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/config.h
diff options
context:
space:
mode:
authorJohannes Schickel2013-08-08 16:22:08 +0200
committerJohannes Schickel2013-08-08 16:28:38 +0200
commit63750d678068aa92ee95dc9de2b2908a983b489d (patch)
treec2369e4b10f348448566bce633e6cdb11a8c7130 /engines/testbed/config.h
parent6e5c308b91031b8b7ae2dc5dd87bb4c2bc20ad81 (diff)
downloadscummvm-rg350-63750d678068aa92ee95dc9de2b2908a983b489d.tar.gz
scummvm-rg350-63750d678068aa92ee95dc9de2b2908a983b489d.tar.bz2
scummvm-rg350-63750d678068aa92ee95dc9de2b2908a983b489d.zip
COMMON: Rename ConfigFile to INIFile.
This clears up that 'ConfigFile' is actually a class handling only INI-files.
Diffstat (limited to 'engines/testbed/config.h')
-rw-r--r--engines/testbed/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/testbed/config.h b/engines/testbed/config.h
index fd5588aa31..d611ae4ec3 100644
--- a/engines/testbed/config.h
+++ b/engines/testbed/config.h
@@ -24,7 +24,7 @@
#include "common/array.h"
-#include "common/config-file.h"
+#include "common/ini-file.h"
#include "common/str-array.h"
#include "common/tokenizer.h"
@@ -62,7 +62,7 @@ public:
private:
Common::Array<Testsuite *> &_testsuiteList;
Common::String _configFileName;
- Common::ConfigFile _configFileInterface;
+ Common::INIFile _configFileInterface;
void parseConfigFile();
};