Merge master <-> api_changes
[profile/ivi/qtdeclarative.git] / examples / qml / cppextensions / referenceexamples / valuesource / birthdayparty.cpp
index 09137c4..aa8bc77 100644 (file)
@@ -70,9 +70,9 @@ void BirthdayParty::setHost(Person *c)
     m_host = c;
 }
 
-QDeclarativeListProperty<Person> BirthdayParty::guests() 
+QQmlListProperty<Person> BirthdayParty::guests()
 {
-    return QDeclarativeListProperty<Person>(this, m_guests);
+    return QQmlListProperty<Person>(this, m_guests);
 }
 
 int BirthdayParty::guestCount() const