aboutsummaryrefslogtreecommitdiff
path: root/gui/launcher.cpp
diff options
context:
space:
mode:
authorMax Horn2003-10-02 17:43:02 +0000
committerMax Horn2003-10-02 17:43:02 +0000
commit0e645f88ae1586dbac2bf0855fd0fda1f8f11eeb (patch)
treecef3882f5cb527ab9ced0c208d6f9c045bf8f3c4 /gui/launcher.cpp
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 'gui/launcher.cpp')
-rw-r--r--gui/launcher.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index d231519f67..3f12bfd057 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -48,7 +48,7 @@ enum {
kQuitCmd = 'QUIT'
};
-typedef ScummVM::List<const TargetSettings *> GameList;
+typedef Common::List<const TargetSettings *> GameList;
/*
* A dialog that allows the user to edit a config game entry.
@@ -75,8 +75,8 @@ enum {
};
class EditGameDialog : public Dialog {
- typedef ScummVM::String String;
- typedef ScummVM::StringList StringList;
+ typedef Common::String String;
+ typedef Common::StringList StringList;
public:
EditGameDialog(NewGui *gui, const String &domain, const TargetSettings *target);
@@ -229,7 +229,7 @@ void LauncherDialog::close() {
void LauncherDialog::updateListing() {
int i;
- ScummVM::StringList l;
+ Common::StringList l;
// Retrieve a list of all games defined in the config file
_domains.clear();