| 214 | } |
| 215 | |
| 216 | QString SourceFileTemplate::name() const |
| 217 | { |
| 218 | Q_D(const SourceFileTemplate); |
| 219 | |
| 220 | KConfig templateConfig(d->descriptionFileName); |
| 221 | KConfigGroup cg(&templateConfig, QStringLiteral("General")); |
| 222 | return cg.readEntry("Name"); |
| 223 | } |
| 224 | |
| 225 | QString SourceFileTemplate::type() const |
| 226 | { |
no test coverage detected