| 104 | ); |
| 105 | |
| 106 | BaseNetworkContentDownloadStatusWindow::BaseNetworkContentDownloadStatusWindow(WindowDesc &desc) : Window(desc) |
| 107 | { |
| 108 | _network_content_client.AddCallback(this); |
| 109 | _network_content_client.DownloadSelectedContent(this->total_files, this->total_bytes); |
| 110 | |
| 111 | this->InitNested(WN_NETWORK_STATUS_WINDOW_CONTENT_DOWNLOAD); |
| 112 | } |
| 113 | |
| 114 | void BaseNetworkContentDownloadStatusWindow::Close([[maybe_unused]] int data) |
| 115 | { |
nothing calls this directly
no test coverage detected