diff options
Diffstat (limited to 'src/gui/widgets/button.h')
-rw-r--r-- | src/gui/widgets/button.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/widgets/button.h b/src/gui/widgets/button.h index 59fda30e6..25fa0da02 100644 --- a/src/gui/widgets/button.h +++ b/src/gui/widgets/button.h @@ -103,16 +103,16 @@ class Button final : public gcn::Button, void setDescription(std::string text) { mDescription = text; } - std::string getDescription() const + std::string getDescription() const A_WARN_UNUSED { return mDescription; } - unsigned getClickCount() const + unsigned getClickCount() const A_WARN_UNUSED { return mClickCount; } void setTag(int tag) { mTag = tag; } - int getTag() const + int getTag() const A_WARN_UNUSED { return mTag; } void setStick(bool b) @@ -135,7 +135,7 @@ class Button final : public gcn::Button, void keyReleased(gcn::KeyEvent &keyEvent) override; - bool isPressed2() const; + bool isPressed2() const A_WARN_UNUSED; private: void init(); |