1
0
Fork 0

(svn r11785) -Codechange: remove some unneeded includes.

release/0.6
rubidium 2008-01-09 00:59:02 +00:00
parent ce2104ed47
commit cd92981e9f
3 changed files with 18 additions and 19 deletions

View File

@ -6,6 +6,7 @@
#define BRIDGE_H
#include "gfx_type.h"
#include "direction_type.h"
#include "tile_cmd.h"
enum {

View File

@ -31,6 +31,22 @@
#include "vehicle_func.h"
#include "settings_type.h"
struct buildvehicle_d {
VehicleType vehicle_type;
union {
RailTypeByte railtype;
AirportFTAClass::Flags flags;
RoadTypes roadtypes;
} filter;
byte sel_index; ///< deprecated value, used for 'unified' ship and road
bool descending_sort_order;
byte sort_criteria;
bool regenerate_list;
EngineID sel_engine;
EngineID rename_engine;
EngineList eng_list;
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(buildvehicle_d));
enum BuildVehicleWidgets {
BUILD_VEHICLE_WIDGET_CLOSEBOX = 0,

View File

@ -5,10 +5,9 @@
#ifndef WINDOW_GUI_H
#define WINDOW_GUI_H
#include "order.h"
#include "core/bitmath_func.hpp"
#include "rail_type.h"
#include "road_type.h"
#include "airport.h"
#include "vehicle_type.h"
#include "viewport.h"
@ -327,23 +326,6 @@ struct tooltips_d {
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(tooltips_d));
struct buildvehicle_d {
VehicleType vehicle_type;
union {
RailTypeByte railtype;
AirportFTAClass::Flags flags;
RoadTypes roadtypes;
} filter;
byte sel_index; ///< deprecated value, used for 'unified' ship and road
bool descending_sort_order;
byte sort_criteria;
bool regenerate_list;
EngineID sel_engine;
EngineID rename_engine;
EngineList eng_list;
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(buildvehicle_d));
struct replaceveh_d {
byte sel_index[2];
EngineID sel_engine[2];