summaryrefslogtreecommitdiff
path: root/src/gui/button.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/button.cpp')
-rw-r--r--src/gui/button.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/gui/button.cpp b/src/gui/button.cpp
index c7070667..a08d383b 100644
--- a/src/gui/button.cpp
+++ b/src/gui/button.cpp
@@ -60,16 +60,14 @@ static ButtonData const data[BUTTON_COUNT] = {
ImageRect Button::button[BUTTON_COUNT];
-Button::Button():
- mIsLogged(false)
+Button::Button()
{
init();
}
Button::Button(const std::string &caption, const std::string &actionEventId,
gcn::ActionListener *listener):
- gcn::Button(caption),
- mIsLogged(false)
+ gcn::Button(caption)
{
init();
setActionEventId(actionEventId);
@@ -131,7 +129,7 @@ void Button::draw(gcn::Graphics *graphics)
if (!isEnabled())
mode = BUTTON_DISABLED;
- else if (isPressed() || mIsLogged)
+ else if (isPressed())
mode = BUTTON_PRESSED;
else if (mHasMouse || isFocused())
mode = BUTTON_HIGHLIGHTED;