From f5681547efc060ab0cc47c36316c4f2aa1217948 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 17 May 2008 23:11:06 +0000 Subject: (svn r13151) -Codechange: use an enum instead of bool as return type of OnKeyPress/OnCTRLStateChange to make it obvious what the return values mean. --- src/signs_gui.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/signs_gui.cpp') diff --git a/src/signs_gui.cpp b/src/signs_gui.cpp index 63fb571b1..15568528a 100644 --- a/src/signs_gui.cpp +++ b/src/signs_gui.cpp @@ -255,10 +255,10 @@ struct SignWindow : QueryStringBaseWindow { } } - 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 @@ struct SignWindow : QueryStringBaseWindow { delete this; break; } - return cont; + return state; } virtual void OnMouseLoop() -- cgit v1.2.3-54-g00ecf