From 270d8aa639341f8be7fde9aa6e6f5bb6fa894d4f Mon Sep 17 00:00:00 2001 From: michi_cc Date: Mon, 5 Aug 2013 20:36:32 +0000 Subject: (svn r25670) -Codechange: Pass UCS-4 characters to the edit box key handler. --- src/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/window.cpp') diff --git a/src/window.cpp b/src/window.cpp index d3d9baadd..bf51fd7ad 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -2378,7 +2378,7 @@ static bool MaybeBringWindowToFront(Window *w) * @return #ES_HANDLED if the key press has been handled and no other * window should receive the event. */ -EventState Window::HandleEditBoxKey(int wid, uint16 key, uint16 keycode) +EventState Window::HandleEditBoxKey(int wid, WChar key, uint16 keycode) { QueryString *query = this->GetQueryString(wid); if (query == NULL) return ES_NOT_HANDLED; -- cgit v1.2.3-54-g00ecf