| 1210 | } |
| 1211 | |
| 1212 | void BaseWorkspace::DismissConnectingDialog() const { |
| 1213 | context_->PostUITask([=, this]() { |
| 1214 | // dismiss dialog |
| 1215 | if (retry_conn_dialog_ && !retry_conn_dialog_->isHidden()) { |
| 1216 | retry_conn_dialog_->Done(0); |
| 1217 | } |
| 1218 | }); |
| 1219 | } |
| 1220 | |
| 1221 | void BaseWorkspace::ProcessNetworkMessage(const std::shared_ptr<tc::Message>& msg) { |
| 1222 | if (msg->type() == MessageType::kDisconnectConnection) { |
nothing calls this directly
no test coverage detected