summaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/properties/example.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/extending/properties/example.qml')
-rw-r--r--examples/declarative/extending/properties/example.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/extending/properties/example.qml b/examples/declarative/extending/properties/example.qml
index 9594a84..35abdd6 100644
--- a/examples/declarative/extending/properties/example.qml
+++ b/examples/declarative/extending/properties/example.qml
@@ -2,12 +2,12 @@ import People 1.0
// ![0]
BirthdayParty {
- celebrant: Person {
+ host: Person {
name: "Bob Jones"
shoeSize: 12
}
guests: [
- Person { name: "Joan Hodges" },
+ Person { name: "Leo Hodges" },
Person { name: "Jack Smith" },
Person { name: "Anne Brown" }
]