aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquicklistview.cpp
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@digia.com>2014-05-14 21:48:44 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-05-15 08:25:53 +0200
commit815838373a0b645f099c84e201b3dd8c7db6f953 (patch)
tree11a248ee328e8e0fb4cdfb4e69111778944094d6 /src/quick/items/qquicklistview.cpp
parent10069a0f7ab4a5698eadc9e9628198e800c945bf (diff)
parentbf332f213bce8ee4d139572baf0934620f5d8103 (diff)
Merge "Merge remote-tracking branch 'origin/stable' into dev" into refs/staging/dev
Diffstat (limited to 'src/quick/items/qquicklistview.cpp')
-rw-r--r--src/quick/items/qquicklistview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/items/qquicklistview.cpp b/src/quick/items/qquicklistview.cpp
index e29e9d3bb6..ec13fa5a6b 100644
--- a/src/quick/items/qquicklistview.cpp
+++ b/src/quick/items/qquicklistview.cpp
@@ -2140,7 +2140,7 @@ void QQuickListView::setOrientation(QQuickListView::Orientation orientation)
This property determines whether delegates are retained outside the
visible area of the view.
- If this value is non-zero, the view may keep as many delegates
+ If this value is greater than zero, the view may keep as many delegates
instantiated as it can fit within the buffer specified. For example,
if in a vertical view the delegate is 20 pixels high and \c cacheBuffer is
set to 40, then up to 2 delegates above and 2 delegates below the visible
@@ -2150,7 +2150,7 @@ void QQuickListView::setOrientation(QQuickListView::Orientation orientation)
delegates outside the visible area are not painted.
The default value of this property is platform dependent, but will usually
- be a non-zero value.
+ be a value greater than zero. Negative values are ignored.
Note that cacheBuffer is not a pixel buffer - it only maintains additional
instantiated delegates.