summaryrefslogtreecommitdiffstats
path: root/examples/widgets/desktop/screenshot/screenshot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/desktop/screenshot/screenshot.cpp')
-rw-r--r--examples/widgets/desktop/screenshot/screenshot.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/widgets/desktop/screenshot/screenshot.cpp b/examples/widgets/desktop/screenshot/screenshot.cpp
index 6438eb27cc..80f26ae282 100644
--- a/examples/widgets/desktop/screenshot/screenshot.cpp
+++ b/examples/widgets/desktop/screenshot/screenshot.cpp
@@ -70,8 +70,7 @@ Screenshot::Screenshot()
delaySpinBox->setSuffix(tr(" s"));
delaySpinBox->setMaximum(60);
- typedef void (QSpinBox::*QSpinBoxIntSignal)(int);
- connect(delaySpinBox, static_cast<QSpinBoxIntSignal>(&QSpinBox::valueChanged),
+ connect(delaySpinBox, QOverload<int>::of(&QSpinBox::valueChanged),
this, &Screenshot::updateCheckBox);
hideThisWindowCheckBox = new QCheckBox(tr("Hide This Window"), optionsGroupBox);