(svn r1848) Remove the obscure feature of initialising the edit box with the contents of str_buffr - it was unused anyway.

Remove it from the chat box too, which inherited it via copy&paste.
This commit is contained in:
tron 2005-02-08 16:37:28 +00:00
parent 1afad51ee2
commit d1fb165ad2
2 changed files with 2 additions and 10 deletions

View File

@ -994,11 +994,7 @@ void ShowQueryString(StringID str, StringID caption, int maxlen, int maxwidth, b
DeleteWindowById(WC_QUERY_STRING, 0);
DeleteWindowById(WC_SAVELOAD, 0);
if (str == 0xFFFF) {
memcpy(_orig_edit_str_buf, str_buffr, MAX_QUERYSTR_LEN);
} else {
GetString(_orig_edit_str_buf, str);
}
GetString(_orig_edit_str_buf, str);
if (maxlen & 0x1000) {
_do_edit_on_text_even_when_no_change_to_edit_box = true;

View File

@ -1455,11 +1455,7 @@ void ShowChatWindow(StringID str, StringID caption, int maxlen, int maxwidth, by
DeleteWindowById(WC_SEND_NETWORK_MSG, 0);
if (str == 0xFFFF) {
memcpy(_orig_edit_str_buf, str_buffr, MAX_QUERYSTR_LEN);
} else {
GetString(_orig_edit_str_buf, str);
}
GetString(_orig_edit_str_buf, str);
_orig_edit_str_buf[maxlen] = 0;