aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2018-04-03 13:43:41 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2018-04-03 12:36:21 +0000
commitd2ed475b84d872181b872472c742297476c062c2 (patch)
tree350f6d1c4dd42d8d6a090bca0d66b29fea20b18d /examples/qml
parent1053b89c4f79c95084368d92dc5af02579e00804 (diff)
Examples: remove bogus returnv5.11.0-beta3
Change-Id: I653974c80c6767d9af95b9157a73c09dbdeb76cc Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'examples/qml')
-rw-r--r--examples/qml/referenceexamples/properties/birthdayparty.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/qml/referenceexamples/properties/birthdayparty.cpp b/examples/qml/referenceexamples/properties/birthdayparty.cpp
index 8a5e9e553e..717c3e0f71 100644
--- a/examples/qml/referenceexamples/properties/birthdayparty.cpp
+++ b/examples/qml/referenceexamples/properties/birthdayparty.cpp
@@ -90,7 +90,7 @@ Person *BirthdayParty::guest(int index) const
}
void BirthdayParty::clearGuests() {
- return m_guests.clear();
+ m_guests.clear();
}
// ![0]