From de96f4d309da91471f0641f7940d4f6ff1d56c8f Mon Sep 17 00:00:00 2001 From: smatz Date: Tue, 22 Sep 2009 18:50:58 +0000 Subject: [PATCH] (svn r17614) -Fix: crash when deleting town while TownDirectory is open --- src/town_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp index 6d8a4c31ed..bc0b098535 100644 --- a/src/town_cmd.cpp +++ b/src/town_cmd.cpp @@ -78,7 +78,6 @@ Town::~Town() /* Delete town authority window * and remove from list of sorted towns */ DeleteWindowById(WC_TOWN_VIEW, this->index); - InvalidateWindowData(WC_TOWN_DIRECTORY, 0, 0); /* Delete all industries belonging to the town */ FOR_ALL_INDUSTRIES(i) if (i->town == this) delete i; @@ -121,6 +120,7 @@ Town::~Town() */ void Town::PostDestructor(size_t index) { + InvalidateWindowData(WC_TOWN_DIRECTORY, 0, 0); UpdateNearestTownForRoadTiles(false); }