From 9a3538fc5081f4d9fe25e52f0b14e0857699cc6b Mon Sep 17 00:00:00 2001 From: Mithra Pattison Date: Fri, 13 Jul 2012 13:30:27 +1000 Subject: [PATCH] Update example QML to follow API change QML for ListView API in qmlvideo and qmlvideofx was modified. Usage of this API in FileBrowser file required changes to follow the new API. Change-Id: I3da25ed5bc696a72cdefc6c72d2ab95c319b758c Reviewed-by: Michael Goddard --- examples/video/qmlvideo/qml/qmlvideo/FileBrowser.qml | 4 ++-- examples/video/qmlvideofx/qml/qmlvideofx/FileBrowser.qml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/video/qmlvideo/qml/qmlvideo/FileBrowser.qml b/examples/video/qmlvideo/qml/qmlvideo/FileBrowser.qml index 4e995e4a..66030256 100644 --- a/examples/video/qmlvideo/qml/qmlvideo/FileBrowser.qml +++ b/examples/video/qmlvideo/qml/qmlvideo/FileBrowser.qml @@ -198,7 +198,7 @@ Rectangle { } width: view1.currentItem == null ? 0 : view1.currentItem.width } - highlightMoveSpeed: 1000 + highlightMoveVelocity: 1000 pressDelay: 100 focus: true state: "current" @@ -248,7 +248,7 @@ Rectangle { } width: view1.currentItem == null ? 0 : view1.currentItem.width } - highlightMoveSpeed: 1000 + highlightMoveVelocity: 1000 pressDelay: 100 states: [ State { diff --git a/examples/video/qmlvideofx/qml/qmlvideofx/FileBrowser.qml b/examples/video/qmlvideofx/qml/qmlvideofx/FileBrowser.qml index d1e64da5..5e66bb38 100644 --- a/examples/video/qmlvideofx/qml/qmlvideofx/FileBrowser.qml +++ b/examples/video/qmlvideofx/qml/qmlvideofx/FileBrowser.qml @@ -199,7 +199,7 @@ Rectangle { } width: view1.currentItem == null ? 0 : view1.currentItem.width } - highlightMoveSpeed: 1000 + highlightMoveVelocity: 1000 pressDelay: 100 focus: true state: "current" @@ -249,7 +249,7 @@ Rectangle { } width: view1.currentItem == null ? 0 : view1.currentItem.width } - highlightMoveSpeed: 1000 + highlightMoveVelocity: 1000 pressDelay: 100 states: [ State { -- 2.34.1