changeset 4730:cb30b82da277 draft

(svn r6642) -Fix r6639: 2 conversions missed
author glx <glx@openttd.org>
date Wed, 04 Oct 2006 20:12:39 +0000
parents aee45912bb5f
children 46de108d78a4
files window.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/window.h
+++ b/window.h
@@ -717,7 +717,7 @@
  */
 static inline void LowerWindowWidget(Window *w, byte widget_index)
 {
-	SetWidgetLoweredState(w, widget_index, true);
+	SetWindowWidgetLoweredState(w, widget_index, true);
 }
 
 /**
@@ -727,7 +727,7 @@
  */
 static inline void RaiseWindowWidget(Window *w, byte widget_index)
 {
-	SetWidgetLoweredState(w, widget_index, false);
+	SetWindowWidgetLoweredState(w, widget_index, false);
 }
 
 /**