* Some data on this window has become invalid. * @param data Information about the changed data. * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details. */
| 754 | * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details. |
| 755 | */ |
| 756 | void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) override |
| 757 | { |
| 758 | if (!gui_scope) return; |
| 759 | this->SetupArrays(); |
| 760 | this->SetButtons(); |
| 761 | this->SetDirty(); |
| 762 | } |
| 763 | }; |
| 764 | |
| 765 | void ShowBuildIndustryWindow() |
nothing calls this directly
no test coverage detected