diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-03-27 15:34:55 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-03-27 15:37:07 +0100 |
commit | 17b2b19e7b907ae955e500d44dd167d2f31ce7bd (patch) | |
tree | a55d7e4a5c358916787df1e8d9b32fa4867b0aea /src/gui/button.h | |
parent | aa6f1c46e78864d9900cdf8afb8bacb8c4ce4651 (diff) | |
download | mana-17b2b19e7b907ae955e500d44dd167d2f31ce7bd.tar.gz mana-17b2b19e7b907ae955e500d44dd167d2f31ce7bd.tar.bz2 mana-17b2b19e7b907ae955e500d44dd167d2f31ce7bd.tar.xz mana-17b2b19e7b907ae955e500d44dd167d2f31ce7bd.zip |
Removed the unused "logged" button status
Seems to be remnant from before we had a proper tabbed area.
Diffstat (limited to 'src/gui/button.h')
-rw-r--r-- | src/gui/button.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gui/button.h b/src/gui/button.h index abaf5c43..eebf7931 100644 --- a/src/gui/button.h +++ b/src/gui/button.h @@ -56,19 +56,12 @@ class Button : public gcn::Button */ void draw(gcn::Graphics *graphics); - /** - * Enable/Disable highlighting - */ - void setLogged(bool enable) - { mIsLogged = enable; } - private: void init(); static ImageRect button[4]; /**< Button state graphics */ static int mInstances; /**< Number of button instances */ static float mAlpha; - bool mIsLogged; /**< Makes the button appear pressed all the time */ }; #endif |