| 2737 | } |
| 2738 | |
| 2739 | void MainWindow::ipcSpawn() { |
| 2740 | QStringList arguments; |
| 2741 | arguments << QStringLiteral("--id") << randomString(15); |
| 2742 | |
| 2743 | QProcess *myProcess = new QProcess(this); |
| 2744 | myProcess->startDetached(execPath, arguments); |
| 2745 | } |
| 2746 | |
| 2747 | void MainWindow::stateAddNew() { |
| 2748 | QString name = randomString(6); |
nothing calls this directly
no test coverage detected