| 46 | |
| 47 | private: |
| 48 | static void catchErrors(const QProcess& process) |
| 49 | { |
| 50 | connect(&process, &QProcess::errorOccurred, [&process](QProcess::ProcessError error) { |
| 51 | qCWarning(SHELL).noquote().nospace() |
| 52 | << "process finished with error: " << error << " \"" << process.errorString() |
| 53 | << "\", the command line: \"" << KShell::quoteArg(process.program()) << ' ' |
| 54 | << KShell::joinArgs(process.arguments()) << '"'; |
| 55 | }); |
| 56 | } |
| 57 | }; |
| 58 | |
| 59 | KDevelop::RuntimeController::RuntimeController(KDevelop::Core* core) |
nothing calls this directly
no test coverage detected