summaryrefslogtreecommitdiff
path: root/src/depot_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-09-07 08:59:43 +0000
committerrubidium <rubidium@openttd.org>2009-09-07 08:59:43 +0000
commit1f21a5cb41f788fc03bb0c508163dd67675b4de1 (patch)
treea5c048765a36329255beb1137a1d6ee4b6624fee /src/depot_gui.cpp
parent98e274286396876e0dd5ecdb3b2a570a74b7cd13 (diff)
downloadopenttd-1f21a5cb41f788fc03bb0c508163dd67675b4de1.tar.xz
(svn r17446) -Codechange: rename BUILD with BUY for strings that are about building (in the future buying) vehicles.
Diffstat (limited to 'src/depot_gui.cpp')
-rw-r--r--src/depot_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/depot_gui.cpp b/src/depot_gui.cpp
index ef2e9e0a8..6e756f91d 100644
--- a/src/depot_gui.cpp
+++ b/src/depot_gui.cpp
@@ -568,7 +568,7 @@ struct DepotWindow : Window {
if (v->type == VEH_TRAIN && !Train::From(v)->IsFrontEngine()) return;
}
- DoCommandP(this->window_number, v->index, _ctrl_pressed ? 1 : 0, CMD_CLONE_VEHICLE | CMD_MSG(STR_ERROR_CAN_T_BUILD_TRAIN + v->type), CcCloneVehicle);
+ DoCommandP(this->window_number, v->index, _ctrl_pressed ? 1 : 0, CMD_CLONE_VEHICLE | CMD_MSG(STR_ERROR_CAN_T_BUY_TRAIN + v->type), CcCloneVehicle);
ResetObjectToPlace();
}