summaryrefslogtreecommitdiff
path: root/src/gui/widgets/button.cpp
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-11-12 13:19:14 +0100
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-11-12 14:03:46 +0100
commit253c660d8e3341ad2d78658a23e599d5aaa84c00 (patch)
tree0718093a3c4f717278a7a6fdfae7bb983bdf9e3a /src/gui/widgets/button.cpp
parentd3f698dbad2bc335765ee931781229cc0f0d123d (diff)
downloadmana-client-253c660d8e3341ad2d78658a23e599d5aaa84c00.tar.gz
mana-client-253c660d8e3341ad2d78658a23e599d5aaa84c00.tar.bz2
mana-client-253c660d8e3341ad2d78658a23e599d5aaa84c00.tar.xz
mana-client-253c660d8e3341ad2d78658a23e599d5aaa84c00.zip
Removed hiding of button popup when setting the text to empty
The text is never set to an empty string, especially not while the mouse is over the button. The popup will be updated or hidden by mouseMoved anyway. Reviewed-by: Thorbjorn Lindeijer
Diffstat (limited to 'src/gui/widgets/button.cpp')
-rw-r--r--src/gui/widgets/button.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gui/widgets/button.cpp b/src/gui/widgets/button.cpp
index 2664c655..86c3b80d 100644
--- a/src/gui/widgets/button.cpp
+++ b/src/gui/widgets/button.cpp
@@ -353,10 +353,3 @@ void Button::mouseExited(gcn::MouseEvent &event)
mTextPopup->setVisible(false);
}
-
-void Button::setButtonPopupText(const std::string& text)
-{
- mPopupText = text;
- if (mPopupText.empty())
- mTextPopup->setVisible(false);
-}