| 100 | |
| 101 | |
| 102 | QString ExecutePlugin::environmentProfileName(KDevelop::ILaunchConfiguration* cfg) const |
| 103 | { |
| 104 | if( !cfg ) |
| 105 | { |
| 106 | return QString(); |
| 107 | } |
| 108 | |
| 109 | return cfg->config().readEntry(ExecutePlugin::environmentProfileEntry, QString()); |
| 110 | } |
| 111 | |
| 112 | |
| 113 | QUrl ExecutePlugin::executable( KDevelop::ILaunchConfiguration* cfg, QString& err ) const |
no test coverage detected