diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-08-11 05:06:56 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-08-11 05:06:56 (GMT) |
commit | 0c1d29300c7248ead3392bb385ceae6889dc2834 (patch) | |
tree | abb4e514e932c280de7292179288a779211f9d8a /examples/declarative/cppextensions/referenceexamples/adding/main.cpp | |
parent | b63d7dc74b30b741c6481fb41d8bb3951a9bd763 (diff) | |
download | Qt-0c1d29300c7248ead3392bb385ceae6889dc2834.zip Qt-0c1d29300c7248ead3392bb385ceae6889dc2834.tar.gz Qt-0c1d29300c7248ead3392bb385ceae6889dc2834.tar.bz2 |
Fix cppextension examples.
Print a useful message on error.
Specify the QML url correctly.
Diffstat (limited to 'examples/declarative/cppextensions/referenceexamples/adding/main.cpp')
-rw-r--r-- | examples/declarative/cppextensions/referenceexamples/adding/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/cppextensions/referenceexamples/adding/main.cpp b/examples/declarative/cppextensions/referenceexamples/adding/main.cpp index 391113c..19cf034 100644 --- a/examples/declarative/cppextensions/referenceexamples/adding/main.cpp +++ b/examples/declarative/cppextensions/referenceexamples/adding/main.cpp @@ -51,13 +51,13 @@ int main(int argc, char ** argv) //![0] QDeclarativeEngine engine; - QDeclarativeComponent component(&engine, ":example.qml"); + QDeclarativeComponent component(&engine, QUrl("qrc:example.qml")); Person *person = qobject_cast<Person *>(component.create()); if (person) { qWarning() << "The person's name is" << person->name(); qWarning() << "They wear a" << person->shoeSize() << "sized shoe"; } else { - qWarning() << "An error occurred"; + qWarning() << component.errors(); } return 0; |