diff options
author | Max Horn | 2007-06-30 12:26:59 +0000 |
---|---|---|
committer | Max Horn | 2007-06-30 12:26:59 +0000 |
commit | 2243197f502c06076f493151429e3188b9c2a760 (patch) | |
tree | e80f331d5cdd944cec632a74dd081a166858b093 /gui/dialog.h | |
parent | 9720742722bc61bb3cb0c8240417816855ea4ef7 (diff) | |
download | scummvm-rg350-2243197f502c06076f493151429e3188b9c2a760.tar.gz scummvm-rg350-2243197f502c06076f493151429e3188b9c2a760.tar.bz2 scummvm-rg350-2243197f502c06076f493151429e3188b9c2a760.zip |
Changed GUI system to use Common::KeyState state
svn-id: r27786
Diffstat (limited to 'gui/dialog.h')
-rw-r--r-- | gui/dialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/dialog.h b/gui/dialog.h index 1c97b4b185..418e3b8e63 100644 --- a/gui/dialog.h +++ b/gui/dialog.h @@ -77,8 +77,8 @@ protected: virtual void handleMouseDown(int x, int y, int button, int clickCount); virtual void handleMouseUp(int x, int y, int button, int clickCount); virtual void handleMouseWheel(int x, int y, int direction); - virtual void handleKeyDown(uint16 ascii, int keycode, int modifiers); - virtual void handleKeyUp(uint16 ascii, int keycode, int modifiers); + virtual void handleKeyDown(Common::KeyState state); + virtual void handleKeyUp(Common::KeyState state); virtual void handleMouseMoved(int x, int y, int button); virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data); |