BSpinner: Set min value then max value

... reverse this to avoid confusion, you'll see why in next commit.

No functional change intended in this commit, functional change is in the
next commit.
This commit is contained in:
John Scipione
2017-01-12 14:15:44 -08:00
parent bdd02e0d9d
commit 3705d40cd9
4 changed files with 32 additions and 32 deletions
+3 -3
View File
@@ -39,12 +39,12 @@ public:
uint32 Precision() const { return fPrecision; };
virtual void SetPrecision(uint32 precision) { fPrecision = precision; };
double MaxValue() const { return fMaxValue; }
virtual void SetMaxValue(double max);
double MinValue() const { return fMinValue; }
virtual void SetMinValue(double min);
double MaxValue() const { return fMaxValue; }
virtual void SetMaxValue(double max);
void Range(double* min, double* max);
virtual void SetRange(double min, double max);
+3 -3
View File
@@ -36,12 +36,12 @@ public:
virtual void SetEnabled(bool enable);
int32 MaxValue() const { return fMaxValue; }
virtual void SetMaxValue(int32 max);
int32 MinValue() const { return fMinValue; }
virtual void SetMinValue(int32 min);
int32 MaxValue() const { return fMaxValue; }
virtual void SetMaxValue(int32 max);
void Range(int32* min, int32* max);
virtual void SetRange(int32 min, int32 max);