summaryrefslogtreecommitdiff
path: root/src/widgets
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2008-08-03 02:18:45 +0000
committerbelugas <belugas@openttd.org>2008-08-03 02:18:45 +0000
commit98d8501278a96548c6c583c5d0940f948ea2fcc8 (patch)
tree0da5ee8484136b64dd0f38c84d336b8ff206094f /src/widgets
parentd6520ae09690203690fa767f12853539ed7f473e (diff)
downloadopenttd-98d8501278a96548c6c583c5d0940f948ea2fcc8.tar.xz
(svn r13970) -Codechange: Replace numbers with Colours enum on network, toolbar and dropdown guis.
Mostly forgotten ones.
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/dropdown.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/dropdown.cpp b/src/widgets/dropdown.cpp
index ff2943214..ecdba6a64 100644
--- a/src/widgets/dropdown.cpp
+++ b/src/widgets/dropdown.cpp
@@ -57,8 +57,8 @@ static void DeleteDropDownList(DropDownList *list)
}
static const Widget _dropdown_menu_widgets[] = {
-{ WWT_PANEL, RESIZE_NONE, 0, 0, 0, 0, 0, 0x0, STR_NULL},
-{ WWT_SCROLLBAR, RESIZE_NONE, 0, 0, 0, 0, 0, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
+{ WWT_PANEL, RESIZE_NONE, COLOUR_END, 0, 0, 0, 0, 0x0, STR_NULL},
+{ WWT_SCROLLBAR, RESIZE_NONE, COLOUR_END, 0, 0, 0, 0, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
{ WIDGETS_END},
};