aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/referenceexamples/binding/example.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/referenceexamples/binding/example.qml')
-rw-r--r--examples/declarative/referenceexamples/binding/example.qml29
1 files changed, 0 insertions, 29 deletions
diff --git a/examples/declarative/referenceexamples/binding/example.qml b/examples/declarative/referenceexamples/binding/example.qml
deleted file mode 100644
index ca0958810..000000000
--- a/examples/declarative/referenceexamples/binding/example.qml
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (C) 2022 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import examples.binding.people
-
-BirthdayParty {
- id: theParty
-
- HappyBirthdaySong on announcement { name: theParty.host.name }
-
- onPartyStarted: (time) => { console.log("This party started rockin' at " + time); }
-
- host: Boy {
- name: "Bob Jones"
- shoe_size: 12
- }
-
- Boy {
- name: "Leo Hodges"
- BirthdayParty.rsvp: "2009-07-06"
- }
- Boy {
- name: "Jack Smith"
- }
- Girl {
- name: "Anne Brown"
- BirthdayParty.rsvp: "2009-07-01"
- }
-}