summaryrefslogtreecommitdiffstats
path: root/examples/opengl/qopenglwindow/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/opengl/qopenglwindow/main.cpp')
-rw-r--r--examples/opengl/qopenglwindow/main.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/opengl/qopenglwindow/main.cpp b/examples/opengl/qopenglwindow/main.cpp
index 4287d42d24..4f008b45a6 100644
--- a/examples/opengl/qopenglwindow/main.cpp
+++ b/examples/opengl/qopenglwindow/main.cpp
@@ -173,8 +173,6 @@ void OpenGLWindow::keyPressEvent(QKeyEvent *e)
void OpenGLWindow::setAnimating(bool enabled)
{
- typedef void (QPaintDeviceWindow::*QPaintDeviceWindowVoidSlot)();
-
if (enabled) {
// Animate continuously, throttled by the blocking swapBuffers() call the
// QOpenGLWindow internally executes after each paint. Once that is done
@@ -182,11 +180,11 @@ void OpenGLWindow::setAnimating(bool enabled)
// obviously assumes that the swap interval (see
// QSurfaceFormat::setSwapInterval()) is non-zero.
connect(this, &QOpenGLWindow::frameSwapped,
- this, static_cast<QPaintDeviceWindowVoidSlot>(&QPaintDeviceWindow::update));
+ this, QOverload<>::of(&QPaintDeviceWindow::update));
update();
} else {
disconnect(this, &QOpenGLWindow::frameSwapped,
- this, static_cast<QPaintDeviceWindowVoidSlot>(&QPaintDeviceWindow::update));
+ this, QOverload<>::of(&QPaintDeviceWindow::update));
}
}