summaryrefslogtreecommitdiff
path: root/src/industry_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-09-08 12:22:28 +0000
committerrubidium <rubidium@openttd.org>2009-09-08 12:22:28 +0000
commit535f71fc13ced5ed1f68886fcd5aebb47d35f53c (patch)
tree834452b0ed760e0c1dc920bffbdf727607ee650a /src/industry_cmd.cpp
parentdcd6b2096d0b8ecd1d9b95d56a8183e6bd604de6 (diff)
downloadopenttd-535f71fc13ced5ed1f68886fcd5aebb47d35f53c.tar.xz
(svn r17472) -Fix [FS#3182]: industry list was rebuilt too early during industry removal causing the removed industry to be still in the list after removal
Diffstat (limited to 'src/industry_cmd.cpp')
-rw-r--r--src/industry_cmd.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp
index 584a7e87e..05e9cb1b7 100644
--- a/src/industry_cmd.cpp
+++ b/src/industry_cmd.cpp
@@ -176,10 +176,18 @@ Industry::~Industry()
DeleteIndustryNews(this->index);
DeleteWindowById(WC_INDUSTRY_VIEW, this->index);
- InvalidateWindowData(WC_INDUSTRY_DIRECTORY, 0, 0);
DeleteSubsidyWith(ST_INDUSTRY, this->index);
CargoPacket::InvalidateAllFrom(ST_INDUSTRY, this->index);
+}
+
+/**
+ * Invalidating some stuff after removing item from the pool.
+ * @param index index of deleted item
+ */
+void Industry::PostDestructor(size_t index)
+{
+ InvalidateWindowData(WC_INDUSTRY_DIRECTORY, 0, 0);
Station::RecomputeIndustriesNearForAll();
}