Changeset - r8222:18ea0202f936
[Not reviewed]
master
0 3 0
rubidium - 16 years ago 2008-01-09 00:59:02
rubidium@openttd.org
(svn r11785) -Codechange: remove some unneeded includes.
3 files changed with 18 insertions and 19 deletions:
0 comments (0 inline, 0 general)
src/bridge.h
Show inline comments
 
@@ -6,6 +6,7 @@
 
#define BRIDGE_H
 

	
 
#include "gfx_type.h"
 
#include "direction_type.h"
 
#include "tile_cmd.h"
 

	
 
enum {
src/build_vehicle_gui.cpp
Show inline comments
 
@@ -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,
src/window_gui.h
Show inline comments
 
@@ -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];
0 comments (0 inline, 0 general)