(svn r6670) -Fix r6669: SetWindowWidgetsDisableState() should disable widgets, not hide them
authorglx
Fri, 06 Oct 2006 21:27:23 +0000
changeset 4756 b8695ae61e0d
parent 4755 4a3564952554
child 4757 a25d9f2067f7
(svn r6670) -Fix r6669: SetWindowWidgetsDisableState() should disable widgets, not hide them
window.c
--- a/window.c	Fri Oct 06 21:10:14 2006 +0000
+++ b/window.c	Fri Oct 06 21:27:23 2006 +0000
@@ -25,7 +25,7 @@
 	va_start(wdg_list, widgets);
 
 	while (widgets != WIDGET_LIST_END) {
-		SetWindowWidgetHiddenState(w, widgets, disab_stat);
+		SetWindowWidgetDisableState(w, widgets, disab_stat);
 		widgets = va_arg(wdg_list, int);
 	}