| 364 | } |
| 365 | |
| 366 | QString AStylePlugin::formattingSample(AStylePreferences::Language lang) |
| 367 | { |
| 368 | switch (lang) { |
| 369 | case AStylePreferences::ObjC: |
| 370 | return formattingObjCSample(); |
| 371 | default: |
| 372 | return formattingCppSample(); |
| 373 | } |
| 374 | Q_UNREACHABLE(); |
| 375 | } |
| 376 | |
| 377 | QString AStylePlugin::indentingSample(AStylePreferences::Language lang) |
| 378 | { |
nothing calls this directly
no test coverage detected