aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederik Schwarzer <frederik.schwarzer@basyskom.com>2016-08-18 16:22:25 +0200
committerFrederik Schwarzer <frederik.schwarzer@basyskom.com>2016-10-06 13:53:34 +0000
commit97a78aece3250dd0d58cf243a16327694abc33ca (patch)
treec61ea72f4d140bd146bc9a334e4c37cf3198ca68
parent39e1368f98fc9cb3283da6c3a9dd66d527b09bc2 (diff)
QQListView: use dot for property syntax
Additionally, that way the braces are not needed anymore. Change-Id: I5afc8fa738211f884ac011079a2ee63613a46d08 Reviewed-by: Venugopal Shivashankar <Venugopal.Shivashankar@qt.io>
-rw-r--r--src/quick/items/qquicklistview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/items/qquicklistview.cpp b/src/quick/items/qquicklistview.cpp
index 9f126525d6..7f4870b84d 100644
--- a/src/quick/items/qquicklistview.cpp
+++ b/src/quick/items/qquicklistview.cpp
@@ -1757,7 +1757,7 @@ bool QQuickListViewPrivate::flick(AxisData &data, qreal minExtent, qreal maxExte
State should \e never be stored in a delegate.
ListView attaches a number of properties to the root item of the delegate, for example
- \c {ListView:isCurrentItem}. In the following example, the root delegate item can access
+ \c ListView.isCurrentItem. In the following example, the root delegate item can access
this attached property directly as \c ListView.isCurrentItem, while the child
\c contactInfo object must refer to this property as \c wrapper.ListView.isCurrentItem.