summaryrefslogtreecommitdiff
path: root/src/vehicle_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-03-28 16:36:32 +0000
committerrubidium <rubidium@openttd.org>2008-03-28 16:36:32 +0000
commit4c63dd074e84cff5ef94cc8e03a841f676b25e92 (patch)
treebd57ff8435e6d037478ae0f621756c0cb3194a8b /src/vehicle_gui.cpp
parent878489e38dc875e644c5de25f690c4aa64aa2d19 (diff)
downloadopenttd-4c63dd074e84cff5ef94cc8e03a841f676b25e92.tar.xz
(svn r12470) -Codechange: split order related types from order.h (and openttd.h) to order_type.h.
Diffstat (limited to 'src/vehicle_gui.cpp')
-rw-r--r--src/vehicle_gui.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp
index c19badd40..f9495aeef 100644
--- a/src/vehicle_gui.cpp
+++ b/src/vehicle_gui.cpp
@@ -40,6 +40,15 @@
#include "table/sprites.h"
#include "table/strings.h"
+struct refit_d {
+ int sel;
+ struct RefitOption *cargo;
+ struct RefitList *list;
+ uint length;
+ VehicleOrderID order;
+};
+assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(refit_d));
+
struct Sorting {
Listing aircraft;
Listing roadveh;