summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks
diff options
context:
space:
mode:
authorAdriano Rezende <adriano.rezende@openbossa.org>2011-01-25 11:20:53 -0300
committerAdriano Rezende <adriano.rezende@openbossa.org>2011-01-25 15:06:02 -0300
commitb50f07679df1169ef4812c2ac408d44d3fe7ee91 (patch)
treee81d17c91c78c296d8acb485f40c4ddad1a41075 /tests/benchmarks
parent409d17afba4986f79e0e13e3e90152ca884e4811 (diff)
Fixed ScrollDecorator to be Common API compliant
The flickable property must have Flickable type and should be called 'flickableItem'. Reviewed-by: Leonardo Sobral Cunha <leo.cunha@nokia.com>
Diffstat (limited to 'tests/benchmarks')
-rw-r--r--tests/benchmarks/ScrollDecoratorBenchmark.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/benchmarks/ScrollDecoratorBenchmark.qml b/tests/benchmarks/ScrollDecoratorBenchmark.qml
index 0f15b2bdc..ce8a272f2 100644
--- a/tests/benchmarks/ScrollDecoratorBenchmark.qml
+++ b/tests/benchmarks/ScrollDecoratorBenchmark.qml
@@ -6,6 +6,6 @@ Item {
GridView { id: gridView }
QmlTime.Timer {
- component: QtComponents.ScrollDecorator { flickable: gridView }
+ component: QtComponents.ScrollDecorator { flickableItem: gridView }
}
}