KEYMAPPER: Rename HardwareKey to HardwareInput
This commit is contained in:
parent
b0f961924a
commit
6afac4e01e
21 changed files with 160 additions and 160 deletions
|
@ -28,7 +28,7 @@
|
|||
|
||||
#include "common/keyboard.h"
|
||||
|
||||
#include "backends/keymapper/hardware-key.h"
|
||||
#include "backends/keymapper/hardware-input.h"
|
||||
|
||||
namespace Common {
|
||||
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue