aboutsummaryrefslogtreecommitdiff
path: root/backends/events/gp2xsdl/gp2xsdl-events.h
diff options
context:
space:
mode:
authorMax Horn2010-11-28 18:39:04 +0000
committerMax Horn2010-11-28 18:39:04 +0000
commit364382cf9fcc013d7acb6c8252bf62e805ccd01c (patch)
tree5528d4092cdd5d5969e1e0f41345ae0b406dc8d4 /backends/events/gp2xsdl/gp2xsdl-events.h
parent06df4459c73e53a0998fe835269b5741e4bd9f5e (diff)
downloadscummvm-rg350-364382cf9fcc013d7acb6c8252bf62e805ccd01c.tar.gz
scummvm-rg350-364382cf9fcc013d7acb6c8252bf62e805ccd01c.tar.bz2
scummvm-rg350-364382cf9fcc013d7acb6c8252bf62e805ccd01c.zip
SDL: Change refs to SdlEventManager to SdlEventSource
svn-id: r54544
Diffstat (limited to 'backends/events/gp2xsdl/gp2xsdl-events.h')
-rw-r--r--backends/events/gp2xsdl/gp2xsdl-events.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/events/gp2xsdl/gp2xsdl-events.h b/backends/events/gp2xsdl/gp2xsdl-events.h
index dbbdb2993b..129069e131 100644
--- a/backends/events/gp2xsdl/gp2xsdl-events.h
+++ b/backends/events/gp2xsdl/gp2xsdl-events.h
@@ -31,9 +31,9 @@
/**
* SDL events manager for GP2X and GP2XWIZ
*/
-class GP2XSdlEventManager : public SdlEventManager {
+class GP2XSdlEventSource : public SdlEventSource {
public:
- GP2XSdlEventManager(Common::EventSource *boss);
+ GP2XSdlEventSource();
protected:
bool _stickBtn[32];
@@ -50,11 +50,11 @@ protected:
virtual bool handleKeyUp(SDL_Event &ev, Common::Event &event);
virtual bool handleJoyButtonDown(SDL_Event &ev, Common::Event &event);
virtual bool handleJoyButtonUp(SDL_Event &ev, Common::Event &event);
- virtual bool GP2XSdlEventManager::handleJoyAxisMotion(SDL_Event &ev, Common::Event &event);
+ virtual bool handleJoyAxisMotion(SDL_Event &ev, Common::Event &event);
virtual void SDLModToOSystemKeyFlags(SDLMod mod, Common::Event &event);
- virtual bool GP2XSdlEventManager::remapKey(SDL_Event &ev, Common::Event &event);
+ virtual bool remapKey(SDL_Event &ev, Common::Event &event);
};
#endif