summaryrefslogtreecommitdiff
path: root/src/terraform_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-07-17 20:13:01 +0000
committerrubidium <rubidium@openttd.org>2008-07-17 20:13:01 +0000
commitd06529ef4d84ce90c90ed560a6b2f3525880c40e (patch)
treeca5029fca4c5aee49145e4bd3e3f0f81df8ccabc /src/terraform_gui.cpp
parentc2d2f817de7ec5f4afd76af2de765ac411cdf3c2 (diff)
downloadopenttd-d06529ef4d84ce90c90ed560a6b2f3525880c40e.tar.xz
(svn r13719) -Codechange: rename IsValidPlayer to IsValidPlayerID in line with all other structs/classes that are in a pool.
Diffstat (limited to 'src/terraform_gui.cpp')
-rw-r--r--src/terraform_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/terraform_gui.cpp b/src/terraform_gui.cpp
index b8114739a..6d4b4bfbd 100644
--- a/src/terraform_gui.cpp
+++ b/src/terraform_gui.cpp
@@ -327,7 +327,7 @@ static const WindowDesc _terraform_desc = {
void ShowTerraformToolbar(Window *link)
{
- if (!IsValidPlayer(_current_player)) return;
+ if (!IsValidPlayerID(_current_player)) return;
Window *w = AllocateWindowDescFront<TerraformToolbarWindow>(&_terraform_desc, 0);
if (w != NULL && link != NULL) {
/* Align the terraform toolbar under the main toolbar and put the linked
@@ -574,7 +574,7 @@ static void ResetLandscapeConfirmationCallback(Window *w, bool confirmed)
/* Delete all stations owned by a player */
Station *st;
FOR_ALL_STATIONS(st) {
- if (IsValidPlayer(st->owner)) delete st;
+ if (IsValidPlayerID(st->owner)) delete st;
}
}
}