summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-08 13:30:50 +0000
committerrubidium <rubidium@openttd.org>2008-05-08 13:30:50 +0000
commitc74ca3897017adc0606171ac79dd03b83c00420e (patch)
treec1bcbc43482bbdf8dfd064372b0c751bbd3a0a87
parentcd3dda5c0c38065f1431a4c74445318813f3703e (diff)
downloadopenttd-c74ca3897017adc0606171ac79dd03b83c00420e.tar.xz
(svn r13011) -Codechange: move PlaceProc_BuyLand out of rail_gui.cpp to the place where it is used and remove some unneeded globalisations of some other PlaceProc functions.
-rw-r--r--src/rail_gui.cpp5
-rw-r--r--src/terraform_gui.cpp7
-rw-r--r--src/tilehighlight_func.h2
3 files changed, 6 insertions, 8 deletions
diff --git a/src/rail_gui.cpp b/src/rail_gui.cpp
index a15e86382..2354689b3 100644
--- a/src/rail_gui.cpp
+++ b/src/rail_gui.cpp
@@ -251,11 +251,6 @@ static void PlaceRail_Tunnel(TileIndex tile)
CMD_BUILD_TUNNEL | CMD_MSG(STR_5016_CAN_T_BUILD_TUNNEL_HERE));
}
-void PlaceProc_BuyLand(TileIndex tile)
-{
- DoCommandP(tile, 0, 0, CcPlaySound1E, CMD_PURCHASE_LAND_AREA | CMD_NO_WATER | CMD_MSG(STR_5806_CAN_T_PURCHASE_THIS_LAND));
-}
-
static void PlaceRail_ConvertRail(TileIndex tile)
{
VpStartPlaceSizing(tile, VPM_X_AND_Y, DDSP_CONVERT_RAIL);
diff --git a/src/terraform_gui.cpp b/src/terraform_gui.cpp
index 12831c293..3a7b46193 100644
--- a/src/terraform_gui.cpp
+++ b/src/terraform_gui.cpp
@@ -159,6 +159,11 @@ static const uint16 _terraform_keycodes[] = {
'O',
};
+static void PlaceProc_BuyLand(TileIndex tile)
+{
+ DoCommandP(tile, 0, 0, CcPlaySound1E, CMD_PURCHASE_LAND_AREA | CMD_NO_WATER | CMD_MSG(STR_5806_CAN_T_PURCHASE_THIS_LAND));
+}
+
void PlaceProc_DemolishArea(TileIndex tile)
{
VpStartPlaceSizing(tile, VPM_X_AND_Y, DDSP_DEMOLISH_AREA);
@@ -174,7 +179,7 @@ static void PlaceProc_LowerLand(TileIndex tile)
VpStartPlaceSizing(tile, VPM_X_AND_Y, DDSP_LOWER_AND_LEVEL_AREA);
}
-void PlaceProc_LevelLand(TileIndex tile)
+static void PlaceProc_LevelLand(TileIndex tile)
{
VpStartPlaceSizing(tile, VPM_X_AND_Y, DDSP_LEVEL_AREA);
}
diff --git a/src/tilehighlight_func.h b/src/tilehighlight_func.h
index 3b49c2393..78eff6f5f 100644
--- a/src/tilehighlight_func.h
+++ b/src/tilehighlight_func.h
@@ -12,8 +12,6 @@
typedef void PlaceProc(TileIndex tile);
void PlaceProc_DemolishArea(TileIndex tile);
-void PlaceProc_LevelLand(TileIndex tile);
-void PlaceProc_BuyLand(TileIndex tile);
bool GUIPlaceProcDragXY(const WindowEvent *e);
bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, ViewportHighlightMode mode, PlaceProc *placeproc);