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 /backends/platform/maemo | |
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 'backends/platform/maemo')
-rw-r--r-- | backends/platform/maemo/maemo-keys.h | 2 | ||||
-rw-r--r-- | backends/platform/maemo/maemo.cpp | 4 | ||||
-rw-r--r-- | backends/platform/maemo/maemo.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/backends/platform/maemo/maemo-keys.h b/backends/platform/maemo/maemo-keys.h index e1337515a7..ae3a746229 100644 --- a/backends/platform/maemo/maemo-keys.h +++ b/backends/platform/maemo/maemo-keys.h @@ -28,7 +28,7 @@ #include "common/keyboard.h" -#include "backends/keymapper/hardware-key.h" +#include "backends/keymapper/hardware-input.h" namespace Common { diff --git a/backends/platform/maemo/maemo.cpp b/backends/platform/maemo/maemo.cpp index a127926eb0..53e88d2286 100644 --- a/backends/platform/maemo/maemo.cpp +++ b/backends/platform/maemo/maemo.cpp @@ -182,8 +182,8 @@ void OSystem_SDL_Maemo::setupIcon() { } #ifdef ENABLE_KEYMAPPER -Common::HardwareKeySet *OSystem_SDL_Maemo::getHardwareKeySet() { - return new Common::HardwareKeySet(Common::maemoKeys, Common::maemoModifiers); +Common::HardwareInputSet *OSystem_SDL_Maemo::getHardwareInputSet() { + return new Common::HardwareInputSet(Common::maemoKeys, Common::maemoModifiers); } Common::Keymap *OSystem_SDL_Maemo::getGlobalKeymap() { diff --git a/backends/platform/maemo/maemo.h b/backends/platform/maemo/maemo.h index 4b84ae573a..43bc262ade 100644 --- a/backends/platform/maemo/maemo.h +++ b/backends/platform/maemo/maemo.h @@ -42,7 +42,7 @@ public: virtual void setWindowCaption(const char *caption); virtual void setupIcon(); #ifdef ENABLE_KEYMAPPER - virtual Common::HardwareKeySet *getHardwareKeySet(); + virtual Common::HardwareInputSet *getHardwareInputSet(); virtual Common::Keymap *getGlobalKeymap(); virtual Common::KeymapperDefaultBindings *getKeymapperDefaultBindings() { return _keymapperDefaultBindings; } #endif |