diff -r e2987a51f382 -r 235e5e2d7f55 src/signs_gui.cpp --- a/src/signs_gui.cpp Sat May 17 22:52:51 2008 +0000 +++ b/src/signs_gui.cpp Sat May 17 23:11:06 2008 +0000 @@ -255,10 +255,10 @@ } } - virtual bool OnKeyPress(uint16 key, uint16 keycode) + virtual EventState OnKeyPress(uint16 key, uint16 keycode) { - bool cont = true; - switch (this->HandleEditBoxKey(QUERY_EDIT_SIGN_WIDGET_TEXT, key, keycode, cont)) { + EventState state = ES_NOT_HANDLED; + switch (this->HandleEditBoxKey(QUERY_EDIT_SIGN_WIDGET_TEXT, key, keycode, state)) { case 1: // Enter pressed, confirms change RenameSign(this->cur_sign, this->text.buf); /* FALL THROUGH */ @@ -267,7 +267,7 @@ delete this; break; } - return cont; + return state; } virtual void OnMouseLoop()