diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-12-06 00:53:44 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-12-06 00:53:44 +0100 |
commit | ae1faae5d963b75a0b04bf69e77fc0ee12d2232d (patch) | |
tree | d59b490d063af60d4137f46822229a5dd774afe4 /opentrack/shortcuts.h | |
parent | 179870eb019f5b2d2327292e8beef63c01a33e4a (diff) |
api/keys: fix build
Diffstat (limited to 'opentrack/shortcuts.h')
-rw-r--r-- | opentrack/shortcuts.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opentrack/shortcuts.h b/opentrack/shortcuts.h index f8343ad8..38037923 100644 --- a/opentrack/shortcuts.h +++ b/opentrack/shortcuts.h @@ -47,9 +47,9 @@ public: KeybindingWorker::Token key_token; #endif - Shortcuts() : + Shortcuts() #ifdef _WIN32 - key_token([&](const Key& k) { receiver(k); }) + : key_token([&](const Key& k) { receiver(k); }) #endif {} |