diff options
Diffstat (limited to 'backends/keymapper/action.h')
-rw-r--r-- | backends/keymapper/action.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/keymapper/action.h b/backends/keymapper/action.h index 31576e2960..c49518b605 100644 --- a/backends/keymapper/action.h +++ b/backends/keymapper/action.h @@ -59,7 +59,7 @@ struct Action { private: /** Hardware key that is mapped to this Action */ - const HardwareKey *_hwKey; + HardwareKey *_hwKey; Keymap *_boss; public: @@ -105,7 +105,7 @@ public: return _boss; } - void mapKey(const HardwareKey *key); + void mapKey(const HardwareKey *key, byte flags = 0); const HardwareKey *getMappedKey() const; }; |