From ca167791b6a91df8e210b2e21aeb5c5b25942096 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 15 Jan 2010 10:55:43 +0000 Subject: [PATCH] (svn r18805) -Codechange: move airport_movement.h to table/ --- projects/openttd_vs80.vcproj | 8 ++++---- projects/openttd_vs90.vcproj | 8 ++++---- source.list | 2 +- src/airport.cpp | 2 +- src/{ => table}/airport_movement.h | 0 5 files changed, 10 insertions(+), 10 deletions(-) rename src/{ => table}/airport_movement.h (100%) diff --git a/projects/openttd_vs80.vcproj b/projects/openttd_vs80.vcproj index 87922546d4..782c1e08d0 100644 --- a/projects/openttd_vs80.vcproj +++ b/projects/openttd_vs80.vcproj @@ -755,10 +755,6 @@ RelativePath=".\..\src\airport.h" > - - @@ -2171,6 +2167,10 @@ + + diff --git a/projects/openttd_vs90.vcproj b/projects/openttd_vs90.vcproj index bb6c86dd16..641b65e21e 100644 --- a/projects/openttd_vs90.vcproj +++ b/projects/openttd_vs90.vcproj @@ -752,10 +752,6 @@ RelativePath=".\..\src\airport.h" > - - @@ -2168,6 +2164,10 @@ + + diff --git a/source.list b/source.list index 3665c0bb79..6ad8e067b9 100644 --- a/source.list +++ b/source.list @@ -98,7 +98,6 @@ window.cpp #end aircraft.h airport.h -airport_movement.h animated_tile_func.h articulated_vehicles.h autoreplace_base.h @@ -473,6 +472,7 @@ saveload/vehicle_sl.cpp saveload/waypoint_sl.cpp # Tables +table/airport_movement.h table/animcursors.h table/autorail.h table/bridge_land.h diff --git a/src/airport.cpp b/src/airport.cpp index 97ab711bae..f4168f9243 100644 --- a/src/airport.cpp +++ b/src/airport.cpp @@ -12,7 +12,7 @@ #include "stdafx.h" #include "debug.h" #include "airport.h" -#include "airport_movement.h" +#include "table/airport_movement.h" #include "core/alloc_func.hpp" #include "date_func.h" #include "settings_type.h" diff --git a/src/airport_movement.h b/src/table/airport_movement.h similarity index 100% rename from src/airport_movement.h rename to src/table/airport_movement.h