aboutsummaryrefslogtreecommitdiff
path: root/base/main.cpp
diff options
context:
space:
mode:
authorMax Horn2008-12-25 23:55:36 +0000
committerMax Horn2008-12-25 23:55:36 +0000
commit6510226216ee135afa2196d40c80445f8de0b1ac (patch)
tree5c5aeee3896d6b15155862d3f7c675ac3c80484a /base/main.cpp
parent6837416556cb84b0f84a1bc231be8d4d59e835bb (diff)
downloadscummvm-rg350-6510226216ee135afa2196d40c80445f8de0b1ac.tar.gz
scummvm-rg350-6510226216ee135afa2196d40c80445f8de0b1ac.tar.bz2
scummvm-rg350-6510226216ee135afa2196d40c80445f8de0b1ac.zip
Renamed NewGui to GuiManager
svn-id: r35544
Diffstat (limited to 'base/main.cpp')
-rw-r--r--base/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/main.cpp b/base/main.cpp
index acba304c9e..6a589eb0fb 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -74,7 +74,7 @@ static bool launcherDialog(OSystem &system) {
// a --gui-theme option, to allow that option to be working, we need to initialize
// GUI here.
// FIXME: Find a nicer way to allow --gui-theme to be working
- GUI::NewGui::instance();
+ GUI::GuiManager::instance();
// Discard any command line options. Those that affect the graphics
// mode and the others (like bootparam etc.) should not
@@ -341,7 +341,7 @@ extern "C" int scummvm_main(int argc, char *argv[]) {
PluginManager::destroy();
Common::ConfigManager::destroy();
Common::SearchManager::destroy();
- GUI::NewGui::destroy();
+ GUI::GuiManager::destroy();
return 0;
}