diff options
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 |