| 375 | } |
| 376 | |
| 377 | QString AStylePlugin::indentingSample(AStylePreferences::Language lang) |
| 378 | { |
| 379 | switch (lang) { |
| 380 | case AStylePreferences::ObjC: |
| 381 | return indentingObjCSample(); |
| 382 | default: |
| 383 | return indentingCppSample(); |
| 384 | } |
| 385 | Q_UNREACHABLE(); |
| 386 | } |
| 387 | |
| 388 | #include "astyle_plugin.moc" |
| 389 | #include "moc_astyle_plugin.cpp" |
nothing calls this directly
no test coverage detected