summaryrefslogtreecommitdiffhomepage
path: root/opentrack/main-window.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'opentrack/main-window.hpp')
-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();