From aab046946496f5d7cdf50bb1c0f81bbb42199cf4 Mon Sep 17 00:00:00 2001 From: glx Date: Wed, 4 Oct 2006 20:12:39 +0000 Subject: [PATCH] (svn r6642) -Fix r6639: 2 conversions missed --- window.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/window.h b/window.h index c9492955c2..2236771ed0 100644 --- a/window.h +++ b/window.h @@ -717,7 +717,7 @@ static inline void ToggleWidgetLoweredState(Window *w, byte widget_index) */ 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 LowerWindowWidget(Window *w, byte widget_index) */ static inline void RaiseWindowWidget(Window *w, byte widget_index) { - SetWidgetLoweredState(w, widget_index, false); + SetWindowWidgetLoweredState(w, widget_index, false); } /**