summaryrefslogtreecommitdiff
path: root/window.h
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2006-10-04 20:12:39 +0000
committerglx <glx@openttd.org>2006-10-04 20:12:39 +0000
commitaab046946496f5d7cdf50bb1c0f81bbb42199cf4 (patch)
treef3c1821d0e7dd3e0a0cbb7b04f85a161c37f3583 /window.h
parent42bad75bf285ed0ec322e9b0965f1e623ad61bf7 (diff)
downloadopenttd-aab046946496f5d7cdf50bb1c0f81bbb42199cf4.tar.xz
(svn r6642) -Fix r6639: 2 conversions missed
Diffstat (limited to 'window.h')
-rw-r--r--window.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/window.h b/window.h
index c9492955c..2236771ed 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);
}
/**