diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-28 17:28:21 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-28 17:28:21 +0000 |
commit | ff63c0e4a73f56558de77f255765e68b662008f6 (patch) | |
tree | 348aed36d6824fd60bf5e9fd8c6f0a0c7730b28f /src/gui/stats.h | |
parent | c962acb281f41830a52df7c1888f92658aaf2700 (diff) | |
download | mana-ff63c0e4a73f56558de77f255765e68b662008f6.tar.gz mana-ff63c0e4a73f56558de77f255765e68b662008f6.tar.bz2 mana-ff63c0e4a73f56558de77f255765e68b662008f6.tar.xz mana-ff63c0e4a73f56558de77f255765e68b662008f6.zip |
Make stats window display numbers instead of characters.
Diffstat (limited to 'src/gui/stats.h')
-rw-r--r-- | src/gui/stats.h | 18 |
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 */ |