| 10 | #include <kcoreaddons_version.h> |
| 11 | |
| 12 | QString safeExecutableName(const QString& executableName, const QStringList& paths) { |
| 13 | return KSandbox::isFlatpak() ? executableName : QStandardPaths::findExecutable(executableName, paths); |
| 14 | } |
| 15 | |
| 16 | void startHostProcess(QProcess& proc, QProcess::OpenMode mode) { |
| 17 | KSandbox::startHostProcess(proc, mode); |
no outgoing calls
no test coverage detected