| 408 | } |
| 409 | |
| 410 | void MainWindow::coreProcessError(CoreProcess::Error error) |
| 411 | { |
| 412 | if (error == CoreProcess::Error::AddressMissing) { |
| 413 | QMessageBox::warning( |
| 414 | this, tr("Address missing"), tr("Please enter the hostname or IP address of the other computer.") |
| 415 | ); |
| 416 | } else if (error == CoreProcess::Error::StartFailed) { |
| 417 | show(); |
| 418 | QMessageBox::warning( |
| 419 | this, tr("Core cannot be started"), |
| 420 | tr("The Core executable could not be successfully started, " |
| 421 | "although it does exist. " |
| 422 | "Please check if you have sufficient permissions to run this program.") |
| 423 | ); |
| 424 | } |
| 425 | } |
| 426 | |
| 427 | void MainWindow::startCore() |
| 428 | { |
nothing calls this directly
no outgoing calls
no test coverage detected