summaryrefslogtreecommitdiff
path: root/src/depot_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-19 09:48:47 +0000
committerrubidium <rubidium@openttd.org>2008-05-19 09:48:47 +0000
commit27c38052b73615fa815272972df58daf0308307d (patch)
treead107e2b54965a8bc93dbd8dfc8a03260f20660d /src/depot_gui.cpp
parentfc29abf62113dd2545bdb5c05760e3539f6acf74 (diff)
downloadopenttd-27c38052b73615fa815272972df58daf0308307d.tar.xz
(svn r13185) -Codechange: remove everything related to the WindowProc callbacks.
Diffstat (limited to 'src/depot_gui.cpp')
-rw-r--r--src/depot_gui.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/depot_gui.cpp b/src/depot_gui.cpp
index ef4947d34..b755bbfb8 100644
--- a/src/depot_gui.cpp
+++ b/src/depot_gui.cpp
@@ -107,7 +107,6 @@ static const WindowDesc _train_depot_desc = {
WC_VEHICLE_DEPOT, WC_NONE,
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
_depot_widgets,
- NULL
};
static const WindowDesc _road_depot_desc = {
@@ -115,7 +114,6 @@ static const WindowDesc _road_depot_desc = {
WC_VEHICLE_DEPOT, WC_NONE,
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
_depot_widgets,
- NULL
};
static const WindowDesc _ship_depot_desc = {
@@ -123,7 +121,6 @@ static const WindowDesc _ship_depot_desc = {
WC_VEHICLE_DEPOT, WC_NONE,
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
_depot_widgets,
- NULL
};
static const WindowDesc _aircraft_depot_desc = {
@@ -131,7 +128,6 @@ static const WindowDesc _aircraft_depot_desc = {
WC_VEHICLE_DEPOT, WC_NONE,
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
_depot_widgets,
- NULL
};
extern int WagonLengthToPixels(int len);