| 218 | } |
| 219 | |
| 220 | void ScriptAppConfigType::configureLaunchFromItem(KConfigGroup config, KDevelop::ProjectBaseItem* item) const |
| 221 | { |
| 222 | config.writeEntry(ExecuteScriptPlugin::executableEntry, item->path().toUrl()); |
| 223 | config.writeEntry(ExecuteScriptPlugin::interpreterEntry, interpreterForUrl(item->path().toUrl())); |
| 224 | config.writeEntry(ExecuteScriptPlugin::outputFilteringEntry, 2u); |
| 225 | config.writeEntry(ExecuteScriptPlugin::runCurrentFileEntry, false); |
| 226 | config.sync(); |
| 227 | } |
| 228 | |
| 229 | void ScriptAppConfigType::configureLaunchFromCmdLineArguments(KConfigGroup cfg, const QStringList &args) const |
| 230 | { |
nothing calls this directly
no test coverage detected