diff options
Diffstat (limited to 'src/gui/widgets/textfield.h')
-rw-r--r-- | src/gui/widgets/textfield.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/widgets/textfield.h b/src/gui/widgets/textfield.h index 85d277a89..90fb0b571 100644 --- a/src/gui/widgets/textfield.h +++ b/src/gui/widgets/textfield.h @@ -131,7 +131,8 @@ class TextField notfinal : public Widget, /** * Set the range on the field if it is numeric */ - void setRange(const int min, const int max) + void setRange(const int min, + const int max) { mMinimum = min; mMaximum = max; @@ -274,7 +275,7 @@ class TextField notfinal : public Widget, static float mAlpha; static ImageRect skin; int mMinimum; - unsigned int mMaximum; + int mMaximum; int mLastEventPaste; int mPadding; bool mNumeric; |