| 319 | } |
| 320 | |
| 321 | QVariant AStyleFormatter::option(const QString &key) const |
| 322 | { |
| 323 | if(!m_options.contains(key)) |
| 324 | qCDebug(KDEV_ASTYLE) << "Missing option name " << key; |
| 325 | return m_options[key]; |
| 326 | } |
| 327 | |
| 328 | void AStyleFormatter::loadStyle(const QString &content) |
| 329 | { |
no test coverage detected