| 222 | |
| 223 | namespace BuiltInStyles { |
| 224 | SourceFormatterStyle gnuIndentGnu() |
| 225 | { |
| 226 | SourceFormatterStyle result(QStringLiteral("GNU_indent_GNU")); |
| 227 | result.setCaption(i18n("Gnu Indent: GNU")); |
| 228 | result.setContent(QStringLiteral("indent")); |
| 229 | result.setUsePreview(true); |
| 230 | |
| 231 | result.setMimeTypes(ISourceFormatter::mimeTypesSupportedByBuiltInStyles()); |
| 232 | return result; |
| 233 | } |
| 234 | |
| 235 | SourceFormatterStyle gnuIndentKr() |
| 236 | { |
no test coverage detected