summaryrefslogtreecommitdiff
path: root/src/gui/stats.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-28 17:28:21 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-28 17:28:21 +0000
commitff63c0e4a73f56558de77f255765e68b662008f6 (patch)
tree348aed36d6824fd60bf5e9fd8c6f0a0c7730b28f /src/gui/stats.h
parentc962acb281f41830a52df7c1888f92658aaf2700 (diff)
downloadmana-client-ff63c0e4a73f56558de77f255765e68b662008f6.tar.gz
mana-client-ff63c0e4a73f56558de77f255765e68b662008f6.tar.bz2
mana-client-ff63c0e4a73f56558de77f255765e68b662008f6.tar.xz
mana-client-ff63c0e4a73f56558de77f255765e68b662008f6.zip
Make stats window display numbers instead of characters.
Diffstat (limited to 'src/gui/stats.h')
-rw-r--r--src/gui/stats.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gui/stats.h b/src/gui/stats.h
index c58c837f..deccba28 100644
--- a/src/gui/stats.h
+++ b/src/gui/stats.h
@@ -21,8 +21,8 @@
* $Id$
*/
-#ifndef _STATS_WINDOW_H
-#define _STATS_WINDOW_H
+#ifndef _TMW_STATS_WINDOW_H
+#define _TMW_STATS_WINDOW_H
#include "button.h"
#include "window.h"
@@ -33,17 +33,17 @@
class StatsWindow : public Window, public gcn::ActionListener {
public:
/**
- * Create the Stats window
+ * Creates the Stats window.
*/
static StatsWindow *create_statswindow();
/**
- * Metod called when receiving actions from widget.
+ * Called when receiving actions from widget.
*/
void action(const std::string& eventId);
/**
- * Metod updates stats in window.
+ * Updates stats in window.
*/
void update();
@@ -51,17 +51,17 @@ class StatsWindow : public Window, public gcn::ActionListener {
int i;
/**
- * Stats captions
+ * Stats captions.
*/
gcn::Label *statsLabel[6];
/**
- * Stats buttons
+ * Stats buttons.
*/
Button *statsButton[6];
/**
- * Stats window ptr
+ * Stats window ptr.
*/
static StatsWindow *ptr;
@@ -76,4 +76,4 @@ class StatsWindow : public Window, public gcn::ActionListener {
virtual ~StatsWindow();
};
-#endif /* _STATS_Window_H */
+#endif /* _TMW_STATS_WINDOW_H */