aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/chapter4-customPropertyTypes/customPropertyTypes.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/extending/chapter4-customPropertyTypes/customPropertyTypes.py')
-rw-r--r--examples/declarative/extending/chapter4-customPropertyTypes/customPropertyTypes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/extending/chapter4-customPropertyTypes/customPropertyTypes.py b/examples/declarative/extending/chapter4-customPropertyTypes/customPropertyTypes.py
index 0cd8feb61..a4a74fef4 100644
--- a/examples/declarative/extending/chapter4-customPropertyTypes/customPropertyTypes.py
+++ b/examples/declarative/extending/chapter4-customPropertyTypes/customPropertyTypes.py
@@ -109,7 +109,7 @@ if __name__ == '__main__':
if view.status() == QQuickView.Error:
sys.exit(-1)
view.show()
- res = app.exec_()
+ res = app.exec()
# Deleting the view before it goes out of scope is required to make sure all child QML instances
# are destroyed in the correct order.
del view