diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-20 19:05:44 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-24 19:31:24 +0100 |
commit | e202dab212ef8fd284d2745dd66496dcc3a2043e (patch) | |
tree | 345437664c02e65f4b6f3b0dd960d20fd5c2bf58 /dinput/keybinding-worker.cpp | |
parent | 48de00ec978261c25e9c4a59479f0607cae751ff (diff) |
fix undefined behavior undescore prefixes
Diffstat (limited to 'dinput/keybinding-worker.cpp')
-rw-r--r-- | dinput/keybinding-worker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dinput/keybinding-worker.cpp b/dinput/keybinding-worker.cpp index aa8faca8..e4cc6659 100644 --- a/dinput/keybinding-worker.cpp +++ b/dinput/keybinding-worker.cpp @@ -210,7 +210,7 @@ bool KeybindingWorker::run_joystick_nolock() return true; } -KeybindingWorker::fun* KeybindingWorker::_add_receiver(fun& receiver) +KeybindingWorker::fun* KeybindingWorker::add_receiver(fun& receiver) { QMutexLocker l(&mtx); receivers.push_back(std::make_unique<fun>(receiver)); |