aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/usingmodel
diff options
context:
space:
mode:
authorCristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2021-04-30 17:49:36 +0200
committerCristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2021-05-05 20:44:49 +0200
commit57e681930f6b4c7c311fc70a66317ef64dee4cb1 (patch)
treebb74a1c956c54be258ccb79eb2e13fdb82107301 /examples/declarative/usingmodel
parent36431b071095b8999347df87621bf23ffcc2ac3d (diff)
examples: use exec() instead of exec_()
Change-Id: I07dd4339093be8fcc80e63a2ff0448e998356203 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'examples/declarative/usingmodel')
-rw-r--r--examples/declarative/usingmodel/usingmodel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/usingmodel/usingmodel.py b/examples/declarative/usingmodel/usingmodel.py
index 4dcb8279e..bd1fa2eba 100644
--- a/examples/declarative/usingmodel/usingmodel.py
+++ b/examples/declarative/usingmodel/usingmodel.py
@@ -95,7 +95,7 @@ if __name__ == '__main__':
sys.exit(-1)
view.show()
- app.exec_()
+ 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