(svn r11593) -Cleanup: remove some forgotten pieces of evidence of a mischief
authorbelugas
Sat, 08 Dec 2007 01:30:18 +0000
changeset 8529 e2db3ea2bf74
parent 8528 04b4ef9abd9b
child 8530 90a35d776726
(svn r11593) -Cleanup: remove some forgotten pieces of evidence of a mischief
src/window.cpp
--- a/src/window.cpp	Sat Dec 08 01:20:47 2007 +0000
+++ b/src/window.cpp	Sat Dec 08 01:30:18 2007 +0000
@@ -26,18 +26,6 @@
 Window *_z_windows[lengthof(_windows)];
 Window **_last_z_window; ///< always points to the next free space in the z-array
 
-void RaiseWindowButtons(Window *w)
-{
-	uint i;
-
-	for (i = 0; i < w->widget_count; i++) {
-		if (w->IsWidgetLowered(i)) {
-			w->RaiseWidget(i);
-			w->InvalidateWidget(i);
-		}
-	}
-}
-
 void CDECL Window::SetWidgetsDisabledState(bool disab_stat, int widgets, ...)
 {
 	va_list wdg_list;