(svn r19904) -Codechange: Make EventState usable outside Window context.

This commit is contained in:
alberth
2010-05-30 12:06:18 +00:00
parent fc82d9cd77
commit 113f3ef0eb
4 changed files with 13 additions and 13 deletions

View File

@@ -56,7 +56,7 @@ private:
public:
void DrawEditBox(Window *w, int wid);
void HandleEditBox(Window *w, int wid);
HandleEditBoxResult HandleEditBoxKey(Window *w, int wid, uint16 key, uint16 keycode, Window::EventState &state);
HandleEditBoxResult HandleEditBoxKey(Window *w, int wid, uint16 key, uint16 keycode, EventState &state);
};
struct QueryStringBaseWindow : public Window, public QueryString {