summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-05-13 04:02:21 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-05-13 04:02:21 (GMT)
commit6fb51c1d8f923c2994490d0ea14ecae4e101187e (patch)
tree00b6ec996c0cacf7e34dcc82a66d1f8a798c7677 /examples
parentd39582a7bb56c58dfd5f6a3f0f0e40e244947899 (diff)
downloadQt-6fb51c1d8f923c2994490d0ea14ecae4e101187e.zip
Qt-6fb51c1d8f923c2994490d0ea14ecae4e101187e.tar.gz
Qt-6fb51c1d8f923c2994490d0ea14ecae4e101187e.tar.bz2
spel
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/listview/dummydata/Recipes.qml (renamed from examples/declarative/listview/dummydata/Recipies.qml)2
-rw-r--r--examples/declarative/listview/recipes.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/listview/dummydata/Recipies.qml b/examples/declarative/listview/dummydata/Recipes.qml
index 3f2ab48..52225dd 100644
--- a/examples/declarative/listview/dummydata/Recipies.qml
+++ b/examples/declarative/listview/dummydata/Recipes.qml
@@ -1,5 +1,5 @@
ListModel {
- id: Recipies
+ id: Recipes
ListElement {
title: "Pancakes"
picture: "content/pics/pancakes.jpg"
diff --git a/examples/declarative/listview/recipes.qml b/examples/declarative/listview/recipes.qml
index 28785f1..ae9756c 100644
--- a/examples/declarative/listview/recipes.qml
+++ b/examples/declarative/listview/recipes.qml
@@ -127,7 +127,7 @@ Rect {
// The actual list
ListView {
id: List
- model: Recipies; delegate: recipeDelegate
+ model: Recipes; delegate: recipeDelegate
anchors.fill: parent; clip: true
}
}