diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-25 21:30:47 +0100 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-25 17:35:59 -0700 |
commit | 537d390ae65e9b8a2701c04baa22962f7db0f093 (patch) | |
tree | 10a14a57ca6d61e4660cf68c15ea68652d81bc41 /src/gui/button.h | |
parent | edd500dd27bb648840abfe1cecb0767d7b2ba3ae (diff) | |
download | mana-client-537d390ae65e9b8a2701c04baa22962f7db0f093.tar.gz mana-client-537d390ae65e9b8a2701c04baa22962f7db0f093.tar.bz2 mana-client-537d390ae65e9b8a2701c04baa22962f7db0f093.tar.xz mana-client-537d390ae65e9b8a2701c04baa22962f7db0f093.zip |
Made the labels on the progress bars more readable
Diffstat (limited to 'src/gui/button.h')
-rw-r--r-- | src/gui/button.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/button.h b/src/gui/button.h index 2999a737..51f6cffc 100644 --- a/src/gui/button.h +++ b/src/gui/button.h @@ -35,7 +35,8 @@ class ImageRect; * * \ingroup GUI */ -class Button : public gcn::Button { +class Button : public gcn::Button +{ public: /** * Default constructor. @@ -46,7 +47,7 @@ class Button : public gcn::Button { * Constructor, sets the caption of the button to the given string and * adds the given action listener. */ - Button(const std::string& caption, const std::string &actionEventId, + Button(const std::string &caption, const std::string &actionEventId, gcn::ActionListener *listener); /** @@ -57,7 +58,7 @@ class Button : public gcn::Button { /** * Draws the button. */ - void draw(gcn::Graphics* graphics); + void draw(gcn::Graphics *graphics); /** * Enable/Disable highlighting |