feat(StatusFloatValidator): Updated default `bottom` and `top` values
This commit is contained in:
parent
694496ce75
commit
4c3196a255
|
@ -27,10 +27,10 @@ StatusValidator {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\qmlproperty string StatusFloatValidator::bottom
|
\qmlproperty real StatusFloatValidator::bottom
|
||||||
This property holds the validator's lowest acceptable value. By default, this property's value is derived from the lowest signed float available (typically -2147483647).
|
This property holds the validator's lowest acceptable value. By default, this property's value is derived from the lowest signed float available.
|
||||||
*/
|
*/
|
||||||
property real bottom
|
property real bottom: qmlDoubleValidator.bottom
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\qmlproperty string StatusFloatValidator::locale
|
\qmlproperty string StatusFloatValidator::locale
|
||||||
|
@ -39,10 +39,16 @@ StatusValidator {
|
||||||
property string locale
|
property string locale
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\qmlproperty string StatusFloatValidator::top
|
\qmlproperty real StatusFloatValidator::top
|
||||||
This property holds the validator's highest acceptable value. By default, this property's value is derived from the highest float available (typically 2147483647).
|
This property holds the validator's highest acceptable value. By default, this property's value is derived from the highest float available.
|
||||||
*/
|
*/
|
||||||
property real top
|
property real top: qmlDoubleValidator.top
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\qmlproperty DoubleValidator StatusFloatValidator::qmlDoubleValidator
|
||||||
|
This property holds a default qml double validator instance.
|
||||||
|
*/
|
||||||
|
readonly property DoubleValidator qmlDoubleValidator: DoubleValidator {}
|
||||||
|
|
||||||
name: "floatValidator"
|
name: "floatValidator"
|
||||||
errorMessage: qsTr("Please enter a valid numeric value.")
|
errorMessage: qsTr("Please enter a valid numeric value.")
|
||||||
|
|
Loading…
Reference in New Issue