diff options
Diffstat (limited to 'src/gui/widgets/button.h')
-rw-r--r-- | src/gui/widgets/button.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/button.h b/src/gui/widgets/button.h index 504ebae70..952b412a2 100644 --- a/src/gui/widgets/button.h +++ b/src/gui/widgets/button.h @@ -168,7 +168,7 @@ class Button final : public Widget, std::string getDescription() const A_WARN_UNUSED { return mDescription; } - unsigned getClickCount() const A_WARN_UNUSED + int getClickCount() const A_WARN_UNUSED { return mClickCount; } void setTag(int tag) @@ -309,7 +309,7 @@ class Button final : public Widget, */ Graphics::Alignment mAlignment; - unsigned mClickCount; + int mClickCount; /** * Holds the spacing between the border and the caption. |