examples/declarative/keyinteraction/focus/focus.qml
changeset 37 758a864f9613
parent 33 3e2da88830cd
--- a/examples/declarative/keyinteraction/focus/focus.qml	Fri Sep 17 08:34:18 2010 +0300
+++ b/examples/declarative/keyinteraction/focus/focus.qml	Mon Oct 04 01:19:32 2010 +0300
@@ -55,27 +55,28 @@
 
         GridMenu {
             id: gridMenu
+            width: parent.width; height: 320
 
-            width: parent.width; height: 320
             focus: true
             interactive: parent.activeFocus
         }
 
-        ListViews {
-            id: listViews
+        ListMenu {
+            id: listMenu
             y: 320; width: parent.width; height: 320
         }
 
         Rectangle { 
             id: shade
             anchors.fill: parent
-            color: "black"; opacity: 0 
+            color: "black"
+            opacity: 0 
         }
 
         states: State {
             name: "showListViews"
             PropertyChanges { target: gridMenu; y: -160 }
-            PropertyChanges { target: listViews; y: 160 }
+            PropertyChanges { target: listMenu; y: 160 }
         }
 
         transitions: Transition {