aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/signals/qmltopy3/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/signals/qmltopy3/main.py')
-rw-r--r--examples/declarative/signals/qmltopy3/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/signals/qmltopy3/main.py b/examples/declarative/signals/qmltopy3/main.py
index e1a4672a8..0f6523125 100644
--- a/examples/declarative/signals/qmltopy3/main.py
+++ b/examples/declarative/signals/qmltopy3/main.py
@@ -64,7 +64,7 @@ if __name__ == '__main__':
root.buttonClicked.connect(lambda: sayThis("clicked button (QML top-level signal)"))
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