Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/testmodelwindow.cc')
-rw-r--r--src/client/testmodelwindow.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/client/testmodelwindow.cc b/src/client/testmodelwindow.cc
index d70fbbf..9778102 100644
--- a/src/client/testmodelwindow.cc
+++ b/src/client/testmodelwindow.cc
@@ -4,10 +4,14 @@
the terms and conditions of the GNU General Public License version 2
*/
+#include "client/testmodelwindow.h"
+#include "client/closeiconbutton.h"
+
#include "ui/ui.h"
#include "ui/paint.h"
-#include "client/testmodelwindow.h"
+
#include "model/model.h"
+
#include "core/gameinterface.h"
namespace client
@@ -26,9 +30,9 @@ TestModelWindow::TestModelWindow(ui::Widget *parent)
testmodelwindow_text->set_background(false);
testmodelwindow_text->set_border(false);
- testmodelwindow_wireframebutton = new ui::IconButton(this, "bitmaps/icons/button_wireframe", "toggle r_wireframe");
+ testmodelwindow_wireframebutton = new ui::IconButton(this, "bitmaps/icons/button_wireframe", "Toggle wireframe", "toggle r_wireframe");
- testmodelwindow_normalsbutton = new ui::IconButton(this, "bitmaps/icons/button_normals", "toggle r_normals");
+ testmodelwindow_normalsbutton = new ui::IconButton(this, "bitmaps/icons/button_normals", "Toggle normals", "toggle r_normals");
testmodelwindow_closebutton = new ui::Button(this);
testmodelwindow_closebutton->set_text("Close");