summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@theqtcompany.com>2014-11-03 16:14:53 +0100
committerMitch Curtis <mitch.curtis@digia.com>2014-11-03 16:21:14 +0100
commitc81870d244c432633866e442df6343be886d7549 (patch)
treea56c73a600ade242a8bb1797b6867e16b875c9aa
parentc6f179c7ac579f60bcbc872b3a687e7163e3ebf7 (diff)
downloadqtquickcontrols-c81870d244c432633866e442df6343be886d7549.tar.gz
Fix up Slider documentation.
Change-Id: I85022aff7e3618aed49b8fbd4d1a817081a14982 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
-rw-r--r--src/controls/Slider.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/controls/Slider.qml b/src/controls/Slider.qml
index 5c54e7a2..b06fcf3a 100644
--- a/src/controls/Slider.qml
+++ b/src/controls/Slider.qml
@@ -61,7 +61,7 @@ import QtQuick.Controls.Private 1.0
}
\endcode
- The Slider value is by default in the range [0, 1]. If integer values are
+ The slider value is by default in the range [0, 1]. If integer values are
needed, you can set the \l stepSize.
You can create a custom appearance for a Slider by
@@ -82,7 +82,7 @@ Control {
/*!
\qmlproperty real Slider::minimumValue
- This property holds the minimum value of the Slider.
+ This property holds the minimum value of the slider.
The default value is \c{0.0}.
*/
property alias minimumValue: range.minimumValue
@@ -90,7 +90,7 @@ Control {
/*!
\qmlproperty real Slider::maximumValue
- This property holds the maximum value of the Slider
+ This property holds the maximum value of the slider.
The default value is \c{1.0}.
*/
property alias maximumValue: range.maximumValue
@@ -146,7 +146,7 @@ Control {
/*!
\qmlproperty real Slider::value
- This property holds the current value of the Slider.
+ This property holds the current value of the slider.
The default value is \c{0.0}.
*/
property alias value: range.value
@@ -154,7 +154,7 @@ Control {
/*!
\qmlproperty bool Slider::activeFocusOnPress
- This property indicates whether the Slider should receive active focus when
+ This property indicates whether the slider should receive active focus when
pressed.
*/
property bool activeFocusOnPress: false
@@ -162,7 +162,7 @@ Control {
/*!
\qmlproperty bool Slider::tickmarksEnabled
- This property indicates whether the Slider should display tickmarks
+ This property indicates whether the slider should display tickmarks
at step intervals. Tick mark spacing is calculated based on the
\l stepSize property.