diff options
author | Tarek Soliman | 2012-02-24 13:23:55 -0600 |
---|---|---|
committer | Tarek Soliman | 2012-02-27 13:00:56 -0600 |
commit | 6afac4e01eba5c297e99597dd2cb17c2e4732a7e (patch) | |
tree | da3a7473c70f529a7cc399975349607d412eb713 /common | |
parent | b0f961924a856b71ebffdb834db122145c4c10e5 (diff) | |
download | scummvm-rg350-6afac4e01eba5c297e99597dd2cb17c2e4732a7e.tar.gz scummvm-rg350-6afac4e01eba5c297e99597dd2cb17c2e4732a7e.tar.bz2 scummvm-rg350-6afac4e01eba5c297e99597dd2cb17c2e4732a7e.zip |
KEYMAPPER: Rename HardwareKey to HardwareInput
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/system.h b/common/system.h index 85a9f6a77e..dc74533861 100644 --- a/common/system.h +++ b/common/system.h @@ -52,7 +52,7 @@ class TimerManager; class SeekableReadStream; class WriteStream; #ifdef ENABLE_KEYMAPPER -class HardwareKeySet; +class HardwareInputSet; class Keymap; class KeymapperDefaultBindings; #endif @@ -938,15 +938,15 @@ public: #ifdef ENABLE_KEYMAPPER /** - * Register hardware keys with keymapper + * Register hardware inputs with keymapper * IMPORTANT NOTE: This is part of the WIP Keymapper. If you plan to use * this, please talk to tsoliman and/or LordHoto. * - * @return HardwareKeySet with all keys and recommended mappings + * @return HardwareInputSet with all keys and recommended mappings * * See keymapper documentation for further reference. */ - virtual Common::HardwareKeySet *getHardwareKeySet() { return 0; } + virtual Common::HardwareInputSet *getHardwareInputSet() { return 0; } /** * Return a platform-specific global keymap |