diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-25 21:30:47 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-25 21:30:47 +0100 |
commit | 65da3d5cd5c8cf40abc1e6d31b04eada615fe307 (patch) | |
tree | 70d570f181fddc5cddb7934b4735d2729ca44e11 /src/gui/ministatus.h | |
parent | 1610ed4b3bc9ea3328087818da0af3f5852d1ff5 (diff) | |
download | mana-65da3d5cd5c8cf40abc1e6d31b04eada615fe307.tar.gz mana-65da3d5cd5c8cf40abc1e6d31b04eada615fe307.tar.bz2 mana-65da3d5cd5c8cf40abc1e6d31b04eada615fe307.tar.xz mana-65da3d5cd5c8cf40abc1e6d31b04eada615fe307.zip |
Made the labels on the progress bars more readable
Diffstat (limited to 'src/gui/ministatus.h')
-rw-r--r-- | src/gui/ministatus.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/gui/ministatus.h b/src/gui/ministatus.h index b191dbf8..c6a36a98 100644 --- a/src/gui/ministatus.h +++ b/src/gui/ministatus.h @@ -19,8 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef _TMW_MINISTATUS_H -#define _TMW_MINISTATUS_H +#ifndef MINISTATUS_H +#define MINISTATUS_H #include <iosfwd> #include <vector> @@ -46,12 +46,12 @@ class MiniStatusWindow : public Window MiniStatusWindow(); /** - * Draw this window + * Draw this window. */ void draw(gcn::Graphics *graphics); /** - * Sets one of the icons + * Sets one of the icons. */ void setIcon(int index, AnimatedSprite *sprite); @@ -61,7 +61,7 @@ class MiniStatusWindow : public Window private: /** - * Updates this dialog with values from player_node + * Updates this dialog with values from player_node. */ void update(); @@ -71,9 +71,6 @@ class MiniStatusWindow : public Window ProgressBar *mHpBar; ProgressBar *mMpBar; ProgressBar *mXpBar; - gcn::Label *mHpLabel; - gcn::Label *mMpLabel; - gcn::Label *mXpLabel; std::vector<AnimatedSprite *> mIcons; }; |