aboutsummaryrefslogtreecommitdiffstats
path: root/examples/widgets/animation
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/animation')
-rw-r--r--examples/widgets/animation/animatedtiles/animatedtiles.py2
-rw-r--r--examples/widgets/animation/appchooser/appchooser.py2
-rw-r--r--examples/widgets/animation/easing/easing.py2
-rw-r--r--examples/widgets/animation/states/states.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/widgets/animation/animatedtiles/animatedtiles.py b/examples/widgets/animation/animatedtiles/animatedtiles.py
index 5b93730fd..01828c9ec 100644
--- a/examples/widgets/animation/animatedtiles/animatedtiles.py
+++ b/examples/widgets/animation/animatedtiles/animatedtiles.py
@@ -265,4 +265,4 @@ if __name__ == '__main__':
states.start()
- sys.exit(app.exec_())
+ sys.exit(app.exec())
diff --git a/examples/widgets/animation/appchooser/appchooser.py b/examples/widgets/animation/appchooser/appchooser.py
index 046da7243..0782211d2 100644
--- a/examples/widgets/animation/appchooser/appchooser.py
+++ b/examples/widgets/animation/appchooser/appchooser.py
@@ -134,4 +134,4 @@ if __name__ == '__main__':
window.resize(300, 300)
window.show()
- sys.exit(app.exec_())
+ sys.exit(app.exec())
diff --git a/examples/widgets/animation/easing/easing.py b/examples/widgets/animation/easing/easing.py
index 6450730d0..24d37bd55 100644
--- a/examples/widgets/animation/easing/easing.py
+++ b/examples/widgets/animation/easing/easing.py
@@ -266,4 +266,4 @@ if __name__ == '__main__':
w = Window()
w.resize(600, 600)
w.show()
- sys.exit(app.exec_())
+ sys.exit(app.exec())
diff --git a/examples/widgets/animation/states/states.py b/examples/widgets/animation/states/states.py
index 4e9343e13..d134f29b6 100644
--- a/examples/widgets/animation/states/states.py
+++ b/examples/widgets/animation/states/states.py
@@ -270,4 +270,4 @@ if __name__ == '__main__':
view = QGraphicsView(scene)
view.show()
- sys.exit(app.exec_())
+ sys.exit(app.exec())