diff options
author | Max Horn | 2010-03-18 15:09:24 +0000 |
---|---|---|
committer | Max Horn | 2010-03-18 15:09:24 +0000 |
commit | c934642bdb7e6747a20054d7cc7b079e69bc22c2 (patch) | |
tree | 190d12bad5ed1cbabbd498d310f261c3a1c25bc9 /gui/launcher.h | |
parent | 30c84d2cff41924e6229d0cacd3d36ce1c2bf6ac (diff) | |
download | scummvm-rg350-c934642bdb7e6747a20054d7cc7b079e69bc22c2.tar.gz scummvm-rg350-c934642bdb7e6747a20054d7cc7b079e69bc22c2.tar.bz2 scummvm-rg350-c934642bdb7e6747a20054d7cc7b079e69bc22c2.zip |
COMMON: Move typedef StringList from str.h to new header str-array.h
This removes the dependency on array.h from str.h.
Also, begun migration from the confusing type name "StringList" to
the more appropriate StringArray.
svn-id: r48282
Diffstat (limited to 'gui/launcher.h')
-rw-r--r-- | gui/launcher.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/launcher.h b/gui/launcher.h index ceb44d9e8e..df9a6fb639 100644 --- a/gui/launcher.h +++ b/gui/launcher.h @@ -40,7 +40,7 @@ Common::String addGameToConf(const GameDescriptor &result); class LauncherDialog : public Dialog { typedef Common::String String; - typedef Common::StringList StringList; + typedef Common::Array<Common::String> StringArray; public: LauncherDialog(); ~LauncherDialog(); @@ -64,7 +64,7 @@ protected: #endif StaticTextWidget *_searchDesc; ButtonWidget *_searchClearButton; - StringList _domains; + StringArray _domains; BrowserDialog *_browser; SaveLoadChooser *_loadDialog; |