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.h
parent14b2372f1a74198ec4f485f9665ef0acc27ae5e3 (diff)
Removed unnecessary class.
Diffstat (limited to 'src/client/mainwindow.h')
-rw-r--r--src/client/mainwindow.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/client/mainwindow.h b/src/client/mainwindow.h
index 3497913..78bf92b 100644
--- a/src/client/mainwindow.h
+++ b/src/client/mainwindow.h
@@ -11,6 +11,7 @@
#include "client/gamewindow.h"
#include "client/infowidget.h"
+#include "client/mainmenu.h"
#include "client/notifications.h"
namespace client
@@ -34,6 +35,10 @@ public:
inline Notifications *notificationswidget() {
return mainwindow_notificationswidget;
}
+
+ inline MainMenu *mainmenu() {
+ return mainwindow_mainmenu;
+ }
protected:
@@ -47,7 +52,7 @@ private:
ClockInfoWidget *mainwindow_clockwidget;
Notifications *mainwindow_notificationswidget;
GameWindow *mainwindow_gamewindow;
-
+ MainMenu *mainwindow_mainmenu;
};
}