summaryrefslogtreecommitdiff
path: root/src/script/api/script_stationlist.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-10-15 18:31:37 +0000
committerrubidium <rubidium@openttd.org>2014-10-15 18:31:37 +0000
commitd534c80e9401c49414f5980aedff13c6100a20c2 (patch)
treeef6dfe4050f387245c018fb71737a8e0e1c31335 /src/script/api/script_stationlist.cpp
parent155114aa98750b6245e045e347b91d1098d26099 (diff)
downloadopenttd-d534c80e9401c49414f5980aedff13c6100a20c2.tar.xz
(svn r27020) -Cleanup: some coding style consistency improvements (mostly spaces)
Diffstat (limited to 'src/script/api/script_stationlist.cpp')
-rw-r--r--src/script/api/script_stationlist.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script/api/script_stationlist.cpp b/src/script/api/script_stationlist.cpp
index 7467c1a34..ab9503a1b 100644
--- a/src/script/api/script_stationlist.cpp
+++ b/src/script/api/script_stationlist.cpp
@@ -41,7 +41,7 @@ ScriptStationList_Cargo::ScriptStationList_Cargo(ScriptStationList_Cargo::CargoM
ScriptStationList_Cargo::CargoSelector selector, StationID station_id, CargoID cargo,
StationID other_station)
{
- switch(mode) {
+ switch (mode) {
case CM_WAITING:
ScriptStationList_CargoWaiting(selector, station_id, cargo, other_station).SwapList(this);
break;
@@ -57,7 +57,7 @@ ScriptStationList_CargoWaiting::ScriptStationList_CargoWaiting(
ScriptStationList_Cargo::CargoSelector selector, StationID station_id, CargoID cargo,
StationID other_station)
{
- switch(selector) {
+ switch (selector) {
case CS_BY_FROM:
ScriptStationList_CargoWaitingByFrom(station_id, cargo).SwapList(this);
break;
@@ -79,7 +79,7 @@ ScriptStationList_CargoPlanned::ScriptStationList_CargoPlanned(
ScriptStationList_Cargo::CargoSelector selector, StationID station_id, CargoID cargo,
StationID other_station)
{
- switch(selector) {
+ switch (selector) {
case CS_BY_FROM:
ScriptStationList_CargoPlannedByFrom(station_id, cargo).SwapList(this);
break;