From e71fd4bb57fe02c28372eb087985cd1d535de2da Mon Sep 17 00:00:00 2001 From: smatz Date: Fri, 11 Jun 2010 00:20:24 +0000 Subject: (svn r19958) -Codechange: move common code from Waypoint and Station destructors to BaseStation destructor --- src/station.cpp | 3 ++- src/waypoint.cpp | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/station.cpp b/src/station.cpp index 47389d79c..26305cd40 100644 --- a/src/station.cpp +++ b/src/station.cpp @@ -45,6 +45,8 @@ BaseStation::~BaseStation() DeleteWindowById(WC_ROADVEH_LIST, wno | (VEH_ROAD << 11)); DeleteWindowById(WC_SHIPS_LIST, wno | (VEH_SHIP << 11)); DeleteWindowById(WC_AIRCRAFT_LIST, wno | (VEH_AIRCRAFT << 11)); + + this->sign.MarkDirty(); } Station::Station(TileIndex tile) : @@ -88,7 +90,6 @@ Station::~Station() } } - this->sign.MarkDirty(); InvalidateWindowData(WC_STATION_LIST, this->owner, 0); DeleteWindowById(WC_STATION_VIEW, index); diff --git a/src/waypoint.cpp b/src/waypoint.cpp index bc7bf2975..9500aba82 100644 --- a/src/waypoint.cpp +++ b/src/waypoint.cpp @@ -52,6 +52,4 @@ Waypoint::~Waypoint() if (CleaningPool()) return; DeleteWindowById(WC_WAYPOINT_VIEW, this->index); RemoveOrderFromAllVehicles(OT_GOTO_WAYPOINT, this->index); - - this->sign.MarkDirty(); } -- cgit v1.2.3-70-g09d2