(svn r6671) -Fix r6670: typo :P

This commit is contained in:
glx 2006-10-06 21:30:09 +00:00
parent 871d1cd77b
commit a01f777fc7
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}