| 101 | WidgetID last_clicked_widget = INVALID_WIDGET; ///< Contains the last widget that has been clicked on this toolbar. |
| 102 | |
| 103 | BuildDocksToolbarWindow(WindowDesc &desc, WindowNumber window_number) : Window(desc) |
| 104 | { |
| 105 | this->InitNested(window_number); |
| 106 | this->OnInvalidateData(); |
| 107 | if (_settings_client.gui.link_terraform_toolbar) ShowTerraformToolbar(this); |
| 108 | } |
| 109 | |
| 110 | void Close([[maybe_unused]] int data = 0) override |
| 111 | { |
nothing calls this directly
no test coverage detected