| 2087 | } |
| 2088 | |
| 2089 | void OnQueryTextFinished(std::optional<std::string> str) override |
| 2090 | { |
| 2091 | if (!str.has_value() || str->empty() || this->request == nullptr) { |
| 2092 | NetworkDisconnect(); |
| 2093 | return; |
| 2094 | } |
| 2095 | |
| 2096 | this->request->Reply(*str); |
| 2097 | } |
| 2098 | }; |
| 2099 | |
| 2100 | static constexpr std::initializer_list<NWidgetPart> _nested_network_join_status_window_widgets = { |
nothing calls this directly
no test coverage detected