Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2011-08-28 10:20:15 +0000
committerStijn Buys <ingar@osirion.org>2011-08-28 10:20:15 +0000
commit1158e624c9daf10b08643b59bcb36dcc1d2caad8 (patch)
treef0498ff6d8ec877354d79287386d18f794250971 /src/client/mainwindow.cc
parent14b2372f1a74198ec4f485f9665ef0acc27ae5e3 (diff)
Removed unnecessary class.
Diffstat (limited to 'src/client/mainwindow.cc')
-rw-r--r--src/client/mainwindow.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/mainwindow.cc b/src/client/mainwindow.cc
index 6574303..607e503 100644
--- a/src/client/mainwindow.cc
+++ b/src/client/mainwindow.cc
@@ -37,6 +37,11 @@ MainWindow::MainWindow(ui::Widget *parent) : ui::Widget(parent)
mainwindow_gamewindow = new GameWindow(this);
mainwindow_gamewindow->raise();
mainwindow_gamewindow->hide();
+
+ // main menus
+ mainwindow_mainmenu = new MainMenu(this);
+ mainwindow_mainmenu->raise();
+ mainwindow_mainmenu->hide();
}
MainWindow::~MainWindow()