1
0
Fork 0

(svn r17811) -Codechange: make HasEditBoxFocus a private function of QueryString because it's not meant to be used for determining whether the given widget actually has focus (it also checks the OSK edit box)

release/1.0
rubidium 2009-10-18 20:56:38 +00:00
parent b8f8c60839
commit 40a32bb976
1 changed files with 2 additions and 0 deletions

View File

@ -51,7 +51,9 @@ struct QueryString {
free((void*)this->orig);
}
private:
bool HasEditBoxFocus(const Window *w, int wid) const;
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);