From 9a741263dbc52e171bf1277f46efb0b8eb73c4df Mon Sep 17 00:00:00 2001 From: Nico Vertriest Date: Mon, 25 Mar 2013 12:40:27 +0100 Subject: Doc: minor language edits MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Concerning vocab., punctuation, syntax and/or Writing Guidelines. Corrected whitespace issues. Replaced "if" with "whether" in Slider.qml Task-number: QTBUG-30318 Change-Id: I0e0e8d2b807f0a6534deb2caa6dbee7eb206f43b Reviewed-by: Topi Reiniƶ Reviewed-by: Martin Smith Reviewed-by: Laszlo Papp --- src/controls/ProgressBar.qml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/controls/ProgressBar.qml') diff --git a/src/controls/ProgressBar.qml b/src/controls/ProgressBar.qml index 38193654..340d5777 100644 --- a/src/controls/ProgressBar.qml +++ b/src/controls/ProgressBar.qml @@ -60,27 +60,28 @@ Control { /*! This property holds the progress bar's current value. Attempting to change the current value to one outside the minimum-maximum range has no effect on the current value. - The default value is \c 0 + + The default value is \c{0}. */ property real value: 0 - /*! This property is the progress bar's minimum value + /*! This property is the progress bar's minimum value. The \l value is clamped to this value. - The default value is \c 0 + The default value is \c{0}. */ property real minimumValue: 0 - /*! This property is the progress bar's maximum value + /*! This property is the progress bar's maximum value. The \l value is clamped to this value. If maximumValue is smaller than \l minimumValue, \l minimumValue will be enforced. - The default value is \c 1 + The default value is \c{1}. */ property real maximumValue: 1 /*! This property toggles indeterminate mode. When the actual progress is unknown, use this option. The progress bar will be animated as a busy indicator instead. - The default value is \c false + The default value is \c false. */ property bool indeterminate: false -- cgit v1.2.1