(svn r8708) -Codechange(r8514): No need to use "this->" in methods
authorcelestar
Tue, 13 Feb 2007 15:44:37 +0000
changeset 5997 e6d057d90fce
parent 5996 4bcab9c286d8
child 5998 2bfbade143ac
(svn r8708) -Codechange(r8514): No need to use "this->" in methods
src/station.cpp
--- a/src/station.cpp	Tue Feb 13 15:42:52 2007 +0000
+++ b/src/station.cpp	Tue Feb 13 15:44:37 2007 +0000
@@ -184,7 +184,7 @@
  */
 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