From cc9ef300857255d84efef60868448c6765d3ccff Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 17 Dec 2021 20:57:48 +0100 Subject: compat/qt-sig: progress on beating options::value into shape --- opentrack/main-window.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'opentrack') diff --git a/opentrack/main-window.hpp b/opentrack/main-window.hpp index 33398d20..0314c582 100644 --- a/opentrack/main-window.hpp +++ b/opentrack/main-window.hpp @@ -78,10 +78,10 @@ class main_window final : public QMainWindow, private State bool exiting_already { false }; - qt_sig::nullary start_tracker { this, &main_window::start_tracker_, Qt::QueuedConnection }; - qt_sig::nullary stop_tracker { this, &main_window::stop_tracker_, Qt::QueuedConnection }; - qt_sig::nullary toggle_tracker { this, &main_window::toggle_tracker_, Qt::QueuedConnection }; - qt_sig::nullary restart_tracker { this, &main_window::restart_tracker_, Qt::QueuedConnection }; + qt_signal start_tracker { this, &main_window::start_tracker_, Qt::QueuedConnection }; + qt_signal stop_tracker { this, &main_window::stop_tracker_, Qt::QueuedConnection }; + qt_signal toggle_tracker { this, &main_window::toggle_tracker_, Qt::QueuedConnection }; + qt_signal restart_tracker { this, &main_window::restart_tracker_, Qt::QueuedConnection }; public: void init_dylibs(); -- cgit v1.2.3