summaryrefslogtreecommitdiff
path: root/src/gui/button.h
diff options
context:
space:
mode:
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