summaryrefslogtreecommitdiff
path: root/src/cheat_gui.cpp
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2008-07-31 02:36:01 +0000
committerbelugas <belugas@openttd.org>2008-07-31 02:36:01 +0000
commit1737ce45e3ec3dda7754bce189f20830baaace65 (patch)
treed176e9fc32c102151590012b5e44a4cc9872b423 /src/cheat_gui.cpp
parent93d0ca873163cee121cc481357670c06b5cccde2 (diff)
downloadopenttd-1737ce45e3ec3dda7754bce189f20830baaace65.tar.xz
(svn r13887) -Codechange: Replace numbers with Colours enum on autoreplace, build_vehicle, cheat, depot and dock guis.
The fact that it goes alphabetically is pure coincidence.
Diffstat (limited to 'src/cheat_gui.cpp')
-rw-r--r--src/cheat_gui.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cheat_gui.cpp b/src/cheat_gui.cpp
index 482f4bc41..f42eadc54 100644
--- a/src/cheat_gui.cpp
+++ b/src/cheat_gui.cpp
@@ -119,10 +119,10 @@ static const CheatEntry _cheats_ui[] = {
static const Widget _cheat_widgets[] = {
-{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
-{ WWT_CAPTION, RESIZE_NONE, 14, 11, 399, 0, 13, STR_CHEATS, STR_018C_WINDOW_TITLE_DRAG_THIS},
-{ WWT_PANEL, RESIZE_NONE, 14, 0, 399, 14, 169, 0x0, STR_NULL},
-{ WWT_PANEL, RESIZE_NONE, 14, 0, 399, 14, 169, 0x0, STR_CHEATS_TIP},
+{ WWT_CLOSEBOX, RESIZE_NONE, COLOUR_GREY, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
+{ WWT_CAPTION, RESIZE_NONE, COLOUR_GREY, 11, 399, 0, 13, STR_CHEATS, STR_018C_WINDOW_TITLE_DRAG_THIS},
+{ WWT_PANEL, RESIZE_NONE, COLOUR_GREY, 0, 399, 14, 169, 0x0, STR_NULL},
+{ WWT_PANEL, RESIZE_NONE, COLOUR_GREY, 0, 399, 14, 169, 0x0, STR_CHEATS_TIP},
{ WIDGETS_END},
};