diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-12-14 21:34:37 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-12-14 21:43:03 +0100 |
commit | 0ebf65f45145a678acbd93c30990c288b582bbd9 (patch) | |
tree | 495e45d103fbe1bc3bded07dd74f559ceaa0cae0 /opentrack | |
parent | bc98d7c1218d6e7758d9c68592e1c8560570d8ad (diff) |
logic, opentrack: remove redundant casts
Diffstat (limited to 'opentrack')
-rw-r--r-- | opentrack/main-window.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/opentrack/main-window.cpp b/opentrack/main-window.cpp index 85c34c51..314e82f2 100644 --- a/opentrack/main-window.cpp +++ b/opentrack/main-window.cpp @@ -87,10 +87,10 @@ void main_window::init_dylibs() this, [&](const QString&) { pTrackerDialog = nullptr; }); connect(ui.iconcomboProtocol, &QComboBox::currentTextChanged, - this, [&](const QString&) { pProtocolDialog = nullptr; }); + this, [this](const QString&) { pProtocolDialog = nullptr; }); connect(ui.iconcomboFilter, &QComboBox::currentTextChanged, - this, [&](const QString&) { pFilterDialog = nullptr; }); + this, [this](const QString&) { pFilterDialog = nullptr; }); connect(&m.tracker_dll, value_::value_changed<QString>(), this, &main_window::save_modules, @@ -176,7 +176,7 @@ void main_window::init_tray_menu() menu_action_show.setIconVisibleInMenu(true); menu_action_show.setText(isHidden() ? tr("Show the Octopus") : tr("Hide the Octopus")); menu_action_show.setIcon(QIcon(":/images/opentrack.png")); - QObject::connect(&menu_action_show, &QAction::triggered, this, [&] { toggle_restore_from_tray(QSystemTrayIcon::Trigger); }); + QObject::connect(&menu_action_show, &QAction::triggered, this, [this] { toggle_restore_from_tray(QSystemTrayIcon::Trigger); }); tray_menu.addAction(&menu_action_show); tray_menu.addSeparator(); |