summaryrefslogtreecommitdiff
path: root/src/gui/debugwindow.cpp
diff options
context:
space:
mode:
authorBjörn Steinbrink <B.Steinbrink@gmx.de>2005-10-20 09:01:12 +0000
committerBjörn Steinbrink <B.Steinbrink@gmx.de>2005-10-20 09:01:12 +0000
commit5acb9213cc2ee949a252a5c08a9a9a13542b94d5 (patch)
tree40d29fd38eeb692ec948c69f15f5ca27067fa7fb /src/gui/debugwindow.cpp
parent2415d3b14cdec975a28ccef46d5234f70b06d3b0 (diff)
downloadmana-client-5acb9213cc2ee949a252a5c08a9a9a13542b94d5.tar.gz
mana-client-5acb9213cc2ee949a252a5c08a9a9a13542b94d5.tar.bz2
mana-client-5acb9213cc2ee949a252a5c08a9a9a13542b94d5.tar.xz
mana-client-5acb9213cc2ee949a252a5c08a9a9a13542b94d5.zip
Various cleanups and refactorisations.
Diffstat (limited to 'src/gui/debugwindow.cpp')
-rw-r--r--src/gui/debugwindow.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp
index 1ffae37f..eebfc29d 100644
--- a/src/gui/debugwindow.cpp
+++ b/src/gui/debugwindow.cpp
@@ -48,13 +48,17 @@ DebugWindow::DebugWindow():
FPSLabel = new gcn::Label("[0 FPS]");
FPSLabel->setPosition(0,0);
+
musicFileLabel = new gcn::Label("Music File: ");
musicFileLabel->setPosition(0, 20);
+
mapFileLabel = new gcn::Label("Mini-Map File: ");
mapFileLabel->setPosition(0, 40);
+
tileMouseLabel = new gcn::Label("[Mouse: 0, 0]");
tileMouseLabel->setPosition(100, 0);
- closeButton = new Button("Close");
+
+ Button *closeButton = new Button("Close");
closeButton->setEventId("close");
closeButton->setPosition(5, 60);
closeButton->addActionListener(this);