summaryrefslogtreecommitdiff
path: root/gui.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-10-28 20:04:54 +0000
committertron <tron@openttd.org>2005-10-28 20:04:54 +0000
commit7c14b86aaf954c20670a3644be84af29a2fc602c (patch)
tree9a4f4a7107287032c0a14495e76860f223a83bfe /gui.h
parent4cc9761cb5d7dd6e4b9b4e9676f856a6357e7dbc (diff)
downloadopenttd-7c14b86aaf954c20670a3644be84af29a2fc602c.tar.xz
(svn r3098) static, const, uint -> TileIndex, indentation, bracing, unused return values, ... mostly related to the clone vehicle GUI
Diffstat (limited to 'gui.h')
-rw-r--r--gui.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/gui.h b/gui.h
index d1f776c48..998b4c378 100644
--- a/gui.h
+++ b/gui.h
@@ -40,11 +40,10 @@ void PlaceProc_BuyLand(TileIndex tile);
/* train_gui.c */
void ShowPlayerTrains(PlayerID player, StationID station);
-void ShowTrainViewWindow(Vehicle *v);
-void ShowTrainDetailsWindow(Vehicle *v);
+void ShowTrainViewWindow(const Vehicle *v);
void ShowOrdersWindow(const Vehicle* v);
-void ShowRoadVehViewWindow(Vehicle *v);
+void ShowRoadVehViewWindow(const Vehicle* v);
/* road_gui.c */
void ShowBuildRoadToolbar(void);
@@ -55,7 +54,7 @@ void ShowPlayerRoadVehicles(PlayerID player, StationID station);
void ShowBuildDocksToolbar(void);
void ShowPlayerShips(PlayerID player, StationID station);
-void ShowShipViewWindow(Vehicle *v);
+void ShowShipViewWindow(const Vehicle* v);
/* aircraft_gui.c */
void ShowBuildAirToolbar(void);