KEYMAPPER: Rename HardwareKey to HardwareInput

This commit is contained in:
Tarek Soliman 2012-02-24 13:23:55 -06:00
parent b0f961924a
commit 6afac4e01e
21 changed files with 160 additions and 160 deletions

View file

@ -28,7 +28,7 @@
#include "common/keyboard.h"
#include "backends/keymapper/hardware-key.h"
#include "backends/keymapper/hardware-input.h"
namespace Common {

View file

@ -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() {

View file

@ -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