window.c
changeset 2788 db2896482939
parent 2703 edd58a233988
child 2816 2b74221ae24c
--- a/window.c	Sat Dec 24 13:22:38 2005 +0000
+++ b/window.c	Sat Dec 24 15:01:17 2005 +0000
@@ -1553,7 +1553,7 @@
 	return -1;
 }
 
-void InvalidateWindow(byte cls, WindowNumber number)
+void InvalidateWindow(WindowClass cls, WindowNumber number)
 {
 	const Window* w;
 
@@ -1572,7 +1572,7 @@
 	SetDirtyBlocks(w->left + wi->left, w->top + wi->top, w->left + wi->right + 1, w->top + wi->bottom + 1);
 }
 
-void InvalidateWindowWidget(byte cls, WindowNumber number, byte widget_index)
+void InvalidateWindowWidget(WindowClass cls, WindowNumber number, byte widget_index)
 {
 	const Window* w;
 
@@ -1583,7 +1583,7 @@
 	}
 }
 
-void InvalidateWindowClasses(byte cls)
+void InvalidateWindowClasses(WindowClass cls)
 {
 	const Window* w;