summaryrefslogtreecommitdiffhomepage
path: root/options
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-06-22 12:54:47 +0200
committerStanislaw Halik <sthalik@misaki.pl>2018-06-26 23:01:53 +0200
commitf50ac3549d6a7f1199fa012e4b03f581bc8d305b (patch)
tree50ff044f1c618119c88544709808f533ed02225e /options
parentd61eb905ae3fa161d50821d01ee47915713e89c2 (diff)
core, modules: modernize syntax only
Use more C++17 features where this helps any.
Diffstat (limited to 'options')
-rw-r--r--options/tie.cpp2
-rw-r--r--options/tie.hpp8
-rw-r--r--options/value-traits.hpp2
3 files changed, 6 insertions, 6 deletions
diff --git a/options/tie.cpp b/options/tie.cpp
index baa8bb82..0042a0fb 100644
--- a/options/tie.cpp
+++ b/options/tie.cpp
@@ -59,7 +59,7 @@ OTR_OPTIONS_EXPORT void tie_setting(value<QVariant>& v, QComboBox* cb)
base_value::connect(&v, base_value::value_changed<QVariant>(),
cb,
[cb, set_idx](const QVariant& var) {
- run_in_thread_sync(cb, [&]() {
+ run_in_thread_sync(cb, [&] {
set_idx(var);
});
}, v.DIRECT_CONNTYPE);
diff --git a/options/tie.hpp b/options/tie.hpp
index ca5eae5e..ff82142e 100644
--- a/options/tie.hpp
+++ b/options/tie.hpp
@@ -40,7 +40,7 @@ std::enable_if_t<std::is_enum_v<t>> tie_setting(value<t>& v, QComboBox* cb)
base_value::connect(cb,
static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
&v, [&v, cb](int idx) {
- run_in_thread_sync(cb, [&]() {
+ run_in_thread_sync(cb, [&] {
v = static_cast<t>(cb->itemData(idx).toInt());
});
},
@@ -48,7 +48,7 @@ std::enable_if_t<std::is_enum_v<t>> tie_setting(value<t>& v, QComboBox* cb)
base_value::connect(&v, base_value::value_changed<int>(),
cb, [cb](int x) {
- run_in_thread_sync(cb, [=]() { cb->setCurrentIndex(cb->findData(x)); });
+ run_in_thread_sync(cb, [=] { cb->setCurrentIndex(cb->findData(x)); });
},
v.DIRECT_CONNTYPE);
}
@@ -61,13 +61,13 @@ void tie_setting(value<t>& v, QComboBox* cb, From&& fn_to_index, To&& fn_to_valu
base_value::connect(cb, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
&v, [&v, cb, fn_to_value](int idx) {
- run_in_thread_sync(cb, [&]() {
+ run_in_thread_sync(cb, [&] {
v = fn_to_value(idx, cb->currentData());
});
}, v.DIRECT_CONNTYPE);
base_value::connect(&v, base_value::value_changed<t>(),
cb, [&v, cb, fn_to_index](cv_qualified<t>& v) {
- run_in_thread_sync(cb, [&]() {
+ run_in_thread_sync(cb, [&] {
cb->setCurrentIndex(fn_to_index(v));
});
});
diff --git a/options/value-traits.hpp b/options/value-traits.hpp
index 8a04b46d..0b30248e 100644
--- a/options/value-traits.hpp
+++ b/options/value-traits.hpp
@@ -34,7 +34,7 @@ struct value_traits<slider_value> : default_value_traits<slider_value>
{
static inline slider_value from_value(const slider_value& val, const slider_value& def)
{
- return slider_value(val.cur(), def.min(), def.max());
+ return { val.cur(), def.min(), def.max() };
}
};