mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r14820) -Codechange: use (the correct) enum-type instead of just int (Zuu)
This commit is contained in:
parent
99eae02c9d
commit
c27460e29c
@ -1046,7 +1046,7 @@ void QueryString::DrawEditBox(Window *w, int wid)
|
||||
_cur_dpi = old_dpi;
|
||||
}
|
||||
|
||||
int QueryStringBaseWindow::HandleEditBoxKey(int wid, uint16 key, uint16 keycode, EventState &state)
|
||||
HandleEditBoxResult QueryStringBaseWindow::HandleEditBoxKey(int wid, uint16 key, uint16 keycode, EventState &state)
|
||||
{
|
||||
return this->QueryString::HandleEditBoxKey(this, wid, key, keycode, state);
|
||||
}
|
||||
|
@ -66,7 +66,7 @@ struct QueryStringBaseWindow : public Window, public QueryString {
|
||||
|
||||
void DrawEditBox(int wid);
|
||||
void HandleEditBox(int wid);
|
||||
int HandleEditBoxKey(int wid, uint16 key, uint16 keycode, EventState &state);
|
||||
HandleEditBoxResult HandleEditBoxKey(int wid, uint16 key, uint16 keycode, EventState &state);
|
||||
virtual void OnOpenOSKWindow(int wid);
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user