diff options
author | tron <tron@openttd.org> | 2006-04-07 09:00:57 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2006-04-07 09:00:57 +0000 |
commit | 3ef6afdb4d0f3b4c327e8570c123d487b631d49a (patch) | |
tree | b2295c20e8a72ece3395807ccde2e6447aad586d /network_gui.c | |
parent | 7a7e7c82cf54f86f8144b99949d564d172f1a8a8 (diff) | |
download | openttd-3ef6afdb4d0f3b4c327e8570c123d487b631d49a.tar.xz |
(svn r4313) The parent window of the chat box is always the main toolbar (?!), therefore don't pass this information as parameter
Diffstat (limited to 'network_gui.c')
-rw-r--r-- | network_gui.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/network_gui.c b/network_gui.c index 4d089c01d..f537a7ebb 100644 --- a/network_gui.c +++ b/network_gui.c @@ -1545,7 +1545,7 @@ static const WindowDesc _chat_window_desc = { ChatWindowWndProc }; -void ShowChatWindow(int maxlen, WindowClass window_class, WindowNumber window_number) +void ShowChatWindow(int maxlen) { Window *w; @@ -1557,8 +1557,8 @@ void ShowChatWindow(int maxlen, WindowClass window_class, WindowNumber window_nu w->click_state = 1 << 1; WP(w,querystr_d).caption = STR_NULL; - WP(w,querystr_d).wnd_class = window_class; - WP(w,querystr_d).wnd_num = window_number; + WP(w,querystr_d).wnd_class = WC_MAIN_TOOLBAR; + WP(w,querystr_d).wnd_num = 0; WP(w,querystr_d).text.caret = false; WP(w,querystr_d).text.maxlength = maxlen; WP(w,querystr_d).text.maxwidth = w->widget[1].right - w->widget[1].left - 2; // widget[1] is the "text box" |