MCPcopy Create free account
hub / github.com/deskflow/deskflow / coreProcessError

Method coreProcessError

src/lib/gui/MainWindow.cpp:410–425  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

408}
409
410void 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
427void MainWindow::startCore()
428{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected