| 94 | } |
| 95 | |
| 96 | std::pair<QString /* exe path */, QString /* args */> OsShell::shellExecutable() |
| 97 | { |
| 98 | //const QString shell = CSettings{}.value(KEY_OTHER_SHELL_COMMAND_NAME, defaultShellExecutableCommand()).toString(); |
| 99 | auto shell = defaultShellExecutableCommand(); |
| 100 | return parseCommandAndArguments(shell); |
| 101 | } |
| 102 | |
| 103 | void OsShell::executeShellCommand(const QString& command, const QString& workingDir) |
| 104 | { |
nothing calls this directly
no test coverage detected