aboutsummaryrefslogtreecommitdiffstats
path: root/examples/opengl/hellogl2/hellogl2.py
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-06 12:41:51 +0200
commitd13e18612244863d109a95ce945036b7af4da70c (patch)
treea8eb416bfd9a587de20e421b0927ce3b73386752 /examples/opengl/hellogl2/hellogl2.py
parent661f21d976842c23c4a97cc63576680669945970 (diff)
examples: use exec() instead of exec_()
Change-Id: I07dd4339093be8fcc80e63a2ff0448e998356203 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit 57e681930f6b4c7c311fc70a66317ef64dee4cb1)
Diffstat (limited to 'examples/opengl/hellogl2/hellogl2.py')
-rw-r--r--examples/opengl/hellogl2/hellogl2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/opengl/hellogl2/hellogl2.py b/examples/opengl/hellogl2/hellogl2.py
index a4ef3314e..6dfc032ad 100644
--- a/examples/opengl/hellogl2/hellogl2.py
+++ b/examples/opengl/hellogl2/hellogl2.py
@@ -66,7 +66,7 @@ except ImportError:
"PyOpenGL must be installed to run this example.",
QMessageBox.Close)
message_box.setDetailedText("Run:\npip install PyOpenGL PyOpenGL_accelerate")
- message_box.exec_()
+ message_box.exec()
sys.exit(1)
@@ -485,5 +485,5 @@ if __name__ == '__main__':
main_window.resize(main_window.sizeHint())
main_window.show()
- res = app.exec_()
+ res = app.exec()
sys.exit(res)