summaryrefslogtreecommitdiffhomepage
path: root/opentrack
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2021-12-17 20:57:48 +0100
committerStanislaw Halik <sthalik@misaki.pl>2021-12-17 20:57:58 +0100
commitcc9ef300857255d84efef60868448c6765d3ccff (patch)
tree7cc470b3dc4cc6094a22c8deefcf8af0e0fbda9f /opentrack
parentface7439282c844897568e7a17d3094102580d38 (diff)
compat/qt-sig: progress on beating options::value<t> into shape
Diffstat (limited to 'opentrack')
-rw-r--r--opentrack/main-window.hpp8
1 files changed, 4 insertions, 4 deletions
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<void> start_tracker { this, &main_window::start_tracker_, Qt::QueuedConnection };
+ qt_signal<void> stop_tracker { this, &main_window::stop_tracker_, Qt::QueuedConnection };
+ qt_signal<void> toggle_tracker { this, &main_window::toggle_tracker_, Qt::QueuedConnection };
+ qt_signal<void> restart_tracker { this, &main_window::restart_tracker_, Qt::QueuedConnection };
public:
void init_dylibs();