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-07-26 20:35:12 +0000
committerStijn Buys <ingar@osirion.org>2011-07-26 20:35:12 +0000
commit11c897f3948c0b4864526e2671874fd662f85688 (patch)
tree30ce397c0d1dbb8f178f218398e4cfdfd2dd7aad /src/client/client.h
parent7cbc39deea27f95257a7b797d79f74a756ec4fb1 (diff)
renamed client::WorldView to client::MainWindow
Diffstat (limited to 'src/client/client.h')
-rw-r--r--src/client/client.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/client.h b/src/client/client.h
index 42b87e6..5b869ad 100644
--- a/src/client/client.h
+++ b/src/client/client.h
@@ -13,7 +13,7 @@
#include "client/clientext.h"
#include "client/soundext.h"
#include "client/testmodelview.h"
-#include "client/worldview.h"
+#include "client/mainwindow.h"
#include "render/renderext.h"
/// client part of the engine
@@ -61,8 +61,8 @@ public:
virtual void notify_disconnect();
/// the main client widget
- inline WorldView *worldview() {
- return client_worldview;
+ inline MainWindow *mainwindow() {
+ return client_mainwindow;
}
/// model test widget
@@ -102,7 +102,7 @@ private:
static void func_menu(std::string const &args);
static void func_view(std::string const &args);
- WorldView *client_worldview;
+ MainWindow *client_mainwindow;
TestModelView *client_testmodelview;
unsigned long previous_timestamp;