summaryrefslogtreecommitdiff
path: root/src/controls/Slider.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/controls/Slider.qml')
-rw-r--r--src/controls/Slider.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/controls/Slider.qml b/src/controls/Slider.qml
index 3ccf4a64..0493d934 100644
--- a/src/controls/Slider.qml
+++ b/src/controls/Slider.qml
@@ -75,7 +75,7 @@ Control {
property int orientation: Qt.Horizontal
/*!
- \qmlproperty double Slider::minimumValue
+ \qmlproperty real Slider::minimumValue
This property holds the minimum value of the Slider.
The default value is \c{0.0}.
@@ -83,7 +83,7 @@ Control {
property alias minimumValue: range.minimumValue
/*!
- \qmlproperty double Slider::maximumValue
+ \qmlproperty real Slider::maximumValue
This property holds the maximum value of the Slider
The default value is \c{1.0}.
@@ -110,7 +110,7 @@ Control {
property alias pressed: mouseArea.pressed
/*!
- \qmlproperty double Slider::stepSize
+ \qmlproperty real Slider::stepSize
This property indicates the slider step size.
@@ -132,7 +132,7 @@ Control {
property alias stepSize: range.stepSize
/*!
- \qmlproperty double Slider::value
+ \qmlproperty real Slider::value
This property holds the current value of the Slider.
The default value is \c{0.0}.
@@ -264,7 +264,7 @@ Control {
horizontalMaximumValue: slider.maximumValue
verticalMinimumValue: slider.minimumValue
verticalMaximumValue: slider.maximumValue
- property double step: (slider.maximumValue - slider.minimumValue)/(range.positionAtMaximum - range.positionAtMinimum)
+ property real step: (slider.maximumValue - slider.minimumValue)/(range.positionAtMaximum - range.positionAtMinimum)
onVerticalWheelMoved: {
if (verticalDelta !== 0) {