From fefff49d13f765c249a2419309ed16a8b425df66 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Wed, 10 Jan 2018 03:01:59 +0100 Subject: many: get rid of trailing type specifiers --- filter-ewma2/ftnoir_filter_ewma2_dialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'filter-ewma2') diff --git a/filter-ewma2/ftnoir_filter_ewma2_dialog.cpp b/filter-ewma2/ftnoir_filter_ewma2_dialog.cpp index 966473cf..dc008c93 100644 --- a/filter-ewma2/ftnoir_filter_ewma2_dialog.cpp +++ b/filter-ewma2/ftnoir_filter_ewma2_dialog.cpp @@ -29,10 +29,10 @@ dialog_ewma::dialog_ewma() [](double x) { return QStringLiteral("%1%").arg(x * 100, 0, 'f', 2);}); connect(ui.minSmooth, &QSlider::valueChanged, this, - [&](int v) -> void { if (ui.maxSmooth->value() < v) ui.maxSmooth->setValue(v); }); + [&](int v) { if (ui.maxSmooth->value() < v) ui.maxSmooth->setValue(v); }); connect(ui.maxSmooth, &QSlider::valueChanged, this, - [&](int v) -> void { if (ui.minSmooth->value() > v) ui.minSmooth->setValue(v); }); + [&](int v) { if (ui.minSmooth->value() > v) ui.minSmooth->setValue(v); }); } void dialog_ewma::doOK() -- cgit v1.2.3