summaryrefslogtreecommitdiff
path: root/src/station.cpp
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2007-02-13 15:44:37 +0000
committercelestar <celestar@openttd.org>2007-02-13 15:44:37 +0000
commit5e880a6a75d5fb3e9d9b90d30ebd720c9dce2a6e (patch)
treea1daa65e0fa988fe4129e1e5ceadf54cac0c4ff0 /src/station.cpp
parent8eab3964b4ad7ebe0151aa292d42d74400214f4a (diff)
downloadopenttd-5e880a6a75d5fb3e9d9b90d30ebd720c9dce2a6e.tar.xz
(svn r8708) -Codechange(r8514): No need to use "this->" in methods
Diffstat (limited to 'src/station.cpp')
-rw-r--r--src/station.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station.cpp b/src/station.cpp
index 1f72df7ba..14f46abaf 100644
--- a/src/station.cpp
+++ b/src/station.cpp
@@ -184,7 +184,7 @@ bool Station::TileBelongsToRailStation(TileIndex tile) const
*/
bool Station::IsBuoy() const
{
- return (this->had_vehicle_of_type & HVOT_BUOY) != 0;
+ return (had_vehicle_of_type & HVOT_BUOY) != 0;
}
/** Determines whether a station exists