summaryrefslogtreecommitdiff
path: root/src/controls/ScrollView.qml
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@digia.com>2013-03-25 12:40:27 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-05 13:48:26 +0200
commit9a741263dbc52e171bf1277f46efb0b8eb73c4df (patch)
treee28813ea790000e7f62ab2dbcb731cc3b934037c /src/controls/ScrollView.qml
parent607090bb3410b8c4b2d6b473f0365bfffe94fd54 (diff)
downloadqtquickcontrols-9a741263dbc52e171bf1277f46efb0b8eb73c4df.tar.gz
Doc: minor language edits
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ƶ <topi.reinio@digia.com> Reviewed-by: Martin Smith <martin.smith@digia.com> Reviewed-by: Laszlo Papp <lpapp@kde.org>
Diffstat (limited to 'src/controls/ScrollView.qml')
-rw-r--r--src/controls/ScrollView.qml18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/controls/ScrollView.qml b/src/controls/ScrollView.qml
index 7a63a3e4..623d3027 100644
--- a/src/controls/ScrollView.qml
+++ b/src/controls/ScrollView.qml
@@ -46,10 +46,10 @@ import QtQuick.Controls.Private 1.0
\qmltype ScrollView
\inqmlmodule QtQuick.Controls 1.0
\ingroup views
- \brief The ScrollView class provides a scrolling view onto another Item.
+ \brief Provides a scrolling view within another Item.
- A ScrollView can be used either instead of a \l Flickable or to decorate an
- existing Flickable. Depending on the platform it will add scroll bars and
+ A ScrollView can be used either to replace a \l Flickable or decorate an
+ existing \l Flickable. Depending on the platform, it will add scroll bars and
a content frame.
Only one Item can be a direct child of the ScrollView and the child is implicitly anchored
@@ -86,10 +86,10 @@ FocusScope {
implicitHeight: 100
/*!
- This property tells the scroll view if it should render
- a frame around it's content.
+ This property tells the ScrollView if it should render
+ a frame around its content.
- The default value is \c false
+ The default value is \c false.
*/
property bool frameVisible: false
@@ -97,7 +97,7 @@ FocusScope {
This property controls if there should be a highlight
around the frame when the ScrollView has input focus.
- The default value is \c false
+ The default value is \c false.
\note This property is only applicable on some platforms, such
as Mac OS.
@@ -107,8 +107,8 @@ FocusScope {
/*!
\qmlproperty Item ScrollView::viewport
- The viewport determines the current "window" on to the contentItem.
- In other words it clips it and the size of the viewport tells you
+ The viewport determines the current "window" on the contentItem.
+ In other words, it clips it and the size of the viewport tells you
how much of the content area is visible.
*/
property alias viewport: viewportItem