diff options
author | Johannes Schickel | 2009-01-02 20:21:21 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-01-02 20:21:21 +0000 |
commit | 6fd559b4f66bae48cb0c86ed5ebb2ec4a9814c59 (patch) | |
tree | dfb4ace494cfee32c23e85b6486b7f1ed68534e6 /gui/themebrowser.cpp | |
parent | 1b0f94547120435cbda18387ff4d936ed84d9276 (diff) | |
download | scummvm-rg350-6fd559b4f66bae48cb0c86ed5ebb2ec4a9814c59.tar.gz scummvm-rg350-6fd559b4f66bae48cb0c86ed5ebb2ec4a9814c59.tar.bz2 scummvm-rg350-6fd559b4f66bae48cb0c86ed5ebb2ec4a9814c59.zip |
- Fixed --gui-theme command line description
- Added --list-themes command line command to list available GUI themes
svn-id: r35681
Diffstat (limited to 'gui/themebrowser.cpp')
-rw-r--r-- | gui/themebrowser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/themebrowser.cpp b/gui/themebrowser.cpp index 7fc35e9bf0..b3db9a3405 100644 --- a/gui/themebrowser.cpp +++ b/gui/themebrowser.cpp @@ -95,7 +95,7 @@ void ThemeBrowser::handleCommand(CommandSender *sender, uint32 cmd, uint32 data) void ThemeBrowser::updateListing() { _themes.clear(); - g_gui.listUseableThemes(_themes); + GuiManager::listUsableThemes(_themes); Common::StringList list; for (ThemeDescList::const_iterator i = _themes.begin(); i != _themes.end(); ++i) |