| 26 | SourceFormatterPlugin::~SourceFormatterPlugin() = default; |
| 27 | |
| 28 | int SourceFormatterPlugin::perProjectConfigPages() const |
| 29 | { |
| 30 | const auto hasFormatters = KDevelop::ICore::self()->sourceFormatterController()->hasFormatters(); |
| 31 | return hasFormatters ? 1 : 0; |
| 32 | } |
| 33 | |
| 34 | KDevelop::ConfigPage* SourceFormatterPlugin::perProjectConfigPage(int number, const KDevelop::ProjectConfigOptions& options, QWidget* parent) |
| 35 | { |
nothing calls this directly
no test coverage detected