summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMithra Pattison <mithra.pattison@nokia.com>2012-07-13 13:30:27 +1000
committerQt by Nokia <qt-info@nokia.com>2012-07-16 07:18:21 +0200
commit9a3538fc5081f4d9fe25e52f0b14e0857699cc6b (patch)
tree85471913e8121d75bea005f33c90f2674d4de012 /examples
parent864ab3a39a8ce5155bf975e9ddd58fd20cd9f87f (diff)
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 <michael.goddard@nokia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/video/qmlvideo/qml/qmlvideo/FileBrowser.qml4
-rw-r--r--examples/video/qmlvideofx/qml/qmlvideofx/FileBrowser.qml4
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 4e995e4ab..660302565 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 d1e64da51..5e66bb38a 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 {