summaryrefslogtreecommitdiffhomepage
path: root/filter-ewma2
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-01-10 03:01:59 +0100
committerStanislaw Halik <sthalik@misaki.pl>2018-01-10 03:37:40 +0100
commitfefff49d13f765c249a2419309ed16a8b425df66 (patch)
tree5133e2cf3de37b59614ccb1ffea7338d23ffea8a /filter-ewma2
parent43dcfd6806e171955c21d18433350c4158b27faf (diff)
many: get rid of trailing type specifiers
Diffstat (limited to 'filter-ewma2')
-rw-r--r--filter-ewma2/ftnoir_filter_ewma2_dialog.cpp4
1 files changed, 2 insertions, 2 deletions
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()