summaryrefslogtreecommitdiff
path: root/src/gui/button.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 15:34:55 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 15:37:07 +0100
commit17b2b19e7b907ae955e500d44dd167d2f31ce7bd (patch)
treea55d7e4a5c358916787df1e8d9b32fa4867b0aea /src/gui/button.h
parentaa6f1c46e78864d9900cdf8afb8bacb8c4ce4651 (diff)
downloadMana-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.h7
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