aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/referenceexamples/grouped/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qml/referenceexamples/grouped/main.cpp')
-rw-r--r--examples/qml/referenceexamples/grouped/main.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/qml/referenceexamples/grouped/main.cpp b/examples/qml/referenceexamples/grouped/main.cpp
index 63dbe988a4..6d4ec517cc 100644
--- a/examples/qml/referenceexamples/grouped/main.cpp
+++ b/examples/qml/referenceexamples/grouped/main.cpp
@@ -63,23 +63,23 @@ int main(int argc, char ** argv)
auto *party = qobject_cast<BirthdayParty *>(component.create());
if (party && party->host()) {
- qWarning() << party->host()->name() << "is having a birthday!";
+ qInfo() << party->host()->name() << "is having a birthday!";
if (qobject_cast<Boy *>(party->host()))
- qWarning() << "He is inviting:";
+ qInfo() << "He is inviting:";
else
- qWarning() << "She is inviting:";
+ qInfo() << "She is inviting:";
Person *bestShoe = nullptr;
- for (int ii = 0; ii < party->guestCount(); ++ii) {
+ for (qsizetype ii = 0; ii < party->guestCount(); ++ii) {
Person *guest = party->guest(ii);
- qWarning() << " " << guest->name();
+ qInfo() << " " << guest->name();
if (!bestShoe || bestShoe->shoe()->price() < guest->shoe()->price())
bestShoe = guest;
}
if (bestShoe)
- qWarning() << bestShoe->name() << "is wearing the best shoes!";
+ qInfo() << bestShoe->name() << "is wearing the best shoes!";
return EXIT_SUCCESS;
}