Commit c81870d2 authored by Mitch Curtis's avatar Mitch Curtis Committed by Mitch Curtis
Browse files

Fix up Slider documentation.


Change-Id: I85022aff7e3618aed49b8fbd4d1a817081a14982
Reviewed-by: default avatarJ-P Nurmi <jpnurmi@theqtcompany.com>
Showing with 6 additions and 6 deletions
...@@ -61,7 +61,7 @@ import QtQuick.Controls.Private 1.0 ...@@ -61,7 +61,7 @@ import QtQuick.Controls.Private 1.0
} }
\endcode \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. needed, you can set the \l stepSize.
You can create a custom appearance for a Slider by You can create a custom appearance for a Slider by
...@@ -82,7 +82,7 @@ Control { ...@@ -82,7 +82,7 @@ Control {
/*! /*!
\qmlproperty real Slider::minimumValue \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}. The default value is \c{0.0}.
*/ */
property alias minimumValue: range.minimumValue property alias minimumValue: range.minimumValue
...@@ -90,7 +90,7 @@ Control { ...@@ -90,7 +90,7 @@ Control {
/*! /*!
\qmlproperty real Slider::maximumValue \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}. The default value is \c{1.0}.
*/ */
property alias maximumValue: range.maximumValue property alias maximumValue: range.maximumValue
...@@ -146,7 +146,7 @@ Control { ...@@ -146,7 +146,7 @@ Control {
/*! /*!
\qmlproperty real Slider::value \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}. The default value is \c{0.0}.
*/ */
property alias value: range.value property alias value: range.value
...@@ -154,7 +154,7 @@ Control { ...@@ -154,7 +154,7 @@ Control {
/*! /*!
\qmlproperty bool Slider::activeFocusOnPress \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. pressed.
*/ */
property bool activeFocusOnPress: false property bool activeFocusOnPress: false
...@@ -162,7 +162,7 @@ Control { ...@@ -162,7 +162,7 @@ Control {
/*! /*!
\qmlproperty bool Slider::tickmarksEnabled \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 at step intervals. Tick mark spacing is calculated based on the
\l stepSize property. \l stepSize property.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment