1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-19 20:49:11 +00:00

(svn r17674) -Codechange: replace SetDirty + OnInvalidateData with InvalidateData (which does the same). Also call InvalidateData in a few cases where that was actually meant.

This commit is contained in:
rubidium
2009-09-30 21:07:54 +00:00
parent 0032405093
commit c847f5c04e
6 changed files with 10 additions and 18 deletions

View File

@@ -489,7 +489,7 @@ struct NetworkChatWindow : public QueryStringBaseWindow {
default: NOT_REACHED();
case HEBR_EDITING: {
Window *osk = FindWindowById(WC_OSK, 0);
if (osk != NULL && osk->parent == this) osk->OnInvalidateData();
if (osk != NULL && osk->parent == this) osk->InvalidateData();
} break;
case HEBR_CONFIRM:
SendChat(this->text.buf, this->dtype, this->dest);