diff options
author | glx <glx@openttd.org> | 2006-10-06 21:30:09 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2006-10-06 21:30:09 +0000 |
commit | b6b73f708940e95db0cf9d0cab82e22b04a42ff6 (patch) | |
tree | bab1ccd6dcfaca37d4a94f0216a448e868955ca5 | |
parent | df7f11c70fbad799501b6aa6c5bd70f0f625841f (diff) | |
download | openttd-b6b73f708940e95db0cf9d0cab82e22b04a42ff6.tar.xz |
(svn r6671) -Fix r6670: typo :P
-rw-r--r-- | window.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ void CDECL SetWindowWidgetsDisabledState(Window *w, bool disab_stat, int widgets va_start(wdg_list, widgets); while (widgets != WIDGET_LIST_END) { - SetWindowWidgetDisableState(w, widgets, disab_stat); + SetWindowWidgetDisabledState(w, widgets, disab_stat); widgets = va_arg(wdg_list, int); } |