| 196 | |
| 197 | |
| 198 | QUrl ExecutePlugin::workingDirectory( KDevelop::ILaunchConfiguration* cfg ) const |
| 199 | { |
| 200 | if( !cfg ) |
| 201 | { |
| 202 | return QUrl(); |
| 203 | } |
| 204 | |
| 205 | return cfg->config().readEntry( ExecutePlugin::workingDirEntry, QUrl() ); |
| 206 | } |
| 207 | |
| 208 | QStringList ExecutePlugin::defaultExternalTerminalCommands() const |
| 209 | { |
no test coverage detected