diff options
author | glx <glx@openttd.org> | 2006-10-04 20:12:39 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2006-10-04 20:12:39 +0000 |
commit | 384a8be1cc615bbcdd40b96add005830d6fd1ae1 (patch) | |
tree | f3c1821d0e7dd3e0a0cbb7b04f85a161c37f3583 | |
parent | 24a34eec9b240a9699f7b96c7744cc2e3e95e10b (diff) | |
download | openttd-384a8be1cc615bbcdd40b96add005830d6fd1ae1.tar.xz |
(svn r6642) -Fix r6639: 2 conversions missed
-rw-r--r-- | window.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } /** |