| 233 | } |
| 234 | |
| 235 | SourceFormatterStyle gnuIndentKr() |
| 236 | { |
| 237 | SourceFormatterStyle result(QStringLiteral("GNU_indent_KR")); |
| 238 | result.setCaption(i18n("Gnu Indent: Kernighan & Ritchie")); |
| 239 | result.setContent(QStringLiteral("indent -kr")); |
| 240 | result.setUsePreview(true); |
| 241 | |
| 242 | result.setMimeTypes(ISourceFormatter::mimeTypesSupportedByBuiltInStyles()); |
| 243 | return result; |
| 244 | } |
| 245 | |
| 246 | SourceFormatterStyle gnuIndentOrig() |
| 247 | { |
no test coverage detected