| 149 | |
| 150 | |
| 151 | bool ExecutePlugin::useTerminal( KDevelop::ILaunchConfiguration* cfg ) const |
| 152 | { |
| 153 | if( !cfg ) |
| 154 | { |
| 155 | return false; |
| 156 | } |
| 157 | |
| 158 | return cfg->config().readEntry( ExecutePlugin::useTerminalEntry, false ); |
| 159 | } |
| 160 | |
| 161 | QStringList ExecutePlugin::terminal(KDevelop::ILaunchConfiguration* cfg, QString& error) const |
| 162 | { |
no test coverage detected