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 | a01f777fc7c6655b08273577b9743498dbfbf518 (patch) | |
tree | bab1ccd6dcfaca37d4a94f0216a448e868955ca5 | |
parent | 871d1cd77b7932d70b8ccc5b783b03b086a12448 (diff) | |
download | openttd-a01f777fc7c6655b08273577b9743498dbfbf518.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); } |