changeset 3468:db767e7fa877 draft

(svn r4313) The parent window of the chat box is always the main toolbar (?!), therefore don't pass this information as parameter
author tron <tron@openttd.org>
date Fri, 07 Apr 2006 09:00:57 +0000
parents 01e87bfa97ae
children 44801860eafb
files gui.h main_gui.c network_gui.c
diffstat 3 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/gui.h
+++ b/gui.h
@@ -124,7 +124,7 @@
 
 /* network gui */
 void ShowNetworkGameWindow(void);
-void ShowChatWindow(int maxlen, WindowClass window_class, WindowNumber window_number);
+void ShowChatWindow(int maxlen);
 
 /* bridge_gui.c */
 void ShowBuildBridgeWindow(uint start, uint end, byte type);
--- a/main_gui.c
+++ b/main_gui.c
@@ -332,7 +332,7 @@
 {
 	_rename_id = desttype + (dest << 8);
 	_rename_what = 2;
-	ShowChatWindow(150, 1, 0);
+	ShowChatWindow(150);
 }
 
 void ShowNetworkGiveMoneyWindow(byte player)
--- a/network_gui.c
+++ b/network_gui.c
@@ -1545,7 +1545,7 @@
 	ChatWindowWndProc
 };
 
-void ShowChatWindow(int maxlen, WindowClass window_class, WindowNumber window_number)
+void ShowChatWindow(int maxlen)
 {
 	Window *w;
 
@@ -1557,8 +1557,8 @@
 
 	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"