Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
4.7.0
-
None
-
59d36ea601aef6182cba0e0f5fc56cc102e29c59
Description
Example code was not updated when the API changed. They use
QDeclarativeComponent component(&engine, "ListView { model=myModel }");
instead of
QDeclarativeComponent component(&engine);
component.setData("import Qt 4.7\nListView { model: myModel }", QUrl());