(svn r26108) -Codechange: some coding style (whitespace)

This commit is contained in:
rubidium
2013-11-25 14:30:22 +00:00
parent 6996b441d9
commit defda16eb6
36 changed files with 38 additions and 38 deletions

View File

@@ -88,7 +88,7 @@ public:
};
/** Action of reserving cargo from a station to be loaded onto a vehicle. */
class CargoReservation: public CargoLoad {
class CargoReservation : public CargoLoad {
public:
CargoReservation(StationCargoList *source, VehicleCargoList *destination, uint max_move, TileIndex load_place) :
CargoLoad(source, destination, max_move, load_place) {}
@@ -96,7 +96,7 @@ public:
};
/** Action of returning previously reserved cargo from the vehicle to the station. */
class CargoReturn: public CargoMovement<VehicleCargoList, StationCargoList> {
class CargoReturn : public CargoMovement<VehicleCargoList, StationCargoList> {
StationID next;
public:
CargoReturn(VehicleCargoList *source, StationCargoList *destination, uint max_move, StationID next) :