| 257 | } |
| 258 | |
| 259 | void FileTransferChannel::InfoDialog(const QString& msg) { |
| 260 | context_->PostUITask([=]() { |
| 261 | auto dialog = SizedMessageBox::MakeInfoOkBox("Info", msg); |
| 262 | dialog->exec(); |
| 263 | }); |
| 264 | } |
| 265 | |
| 266 | void FileTransferChannel::ErrorDialog(const QString& msg) { |
| 267 | context_->PostUITask([=]() { |
nothing calls this directly
no test coverage detected