diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-09-23 05:10:42 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-09-23 05:13:21 (GMT) |
commit | 45cfde8dd00808a06ff9890481a51d0e5886dc71 (patch) | |
tree | 36088b4a0aa53da9a70eb90a74edb07c9cd2b504 /demos | |
parent | 718c4ff7e9a9cbf0150c937c1036a03935dda3e1 (diff) | |
download | Qt-45cfde8dd00808a06ff9890481a51d0e5886dc71.zip Qt-45cfde8dd00808a06ff9890481a51d0e5886dc71.tar.gz Qt-45cfde8dd00808a06ff9890481a51d0e5886dc71.tar.bz2 |
Use new property name
Diffstat (limited to 'demos')
-rw-r--r-- | demos/declarative/contacts/contacts.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/declarative/contacts/contacts.qml b/demos/declarative/contacts/contacts.qml index 278eeb3..2b0d983 100644 --- a/demos/declarative/contacts/contacts.qml +++ b/demos/declarative/contacts/contacts.qml @@ -224,7 +224,7 @@ Rectangle { } } ] - autoHighlight: true + highlightFollowsCurrentItem: true focus: false } FocusScope { @@ -291,7 +291,7 @@ Rectangle { ] } focus: contacts.mode != 'new' - forwardTo: { contacts.mode == "list" ? [searchBarWrapper, contactListView] : [contactListView]} + Keys.forwardTo: { contacts.mode == "list" ? [searchBarWrapper, contactListView] : [contactListView]} states: [ State { name: "editNewState" |