| 770 | } |
| 771 | |
| 772 | KDevelop::ConfigPage* Plugin::configPage(int number, QWidget* parent) |
| 773 | { |
| 774 | if (auto* const page = m_plugin->configPage(number, parent)) { |
| 775 | auto* const adapter = new KTextEditorConfigPageAdapter(page, this, parent); |
| 776 | adjustPluginPageAdapter(Core::self()->pluginController()->pluginInfo(this), *adapter); |
| 777 | return adapter; |
| 778 | } |
| 779 | return nullptr; |
| 780 | } |
| 781 | |
| 782 | int Plugin::configPages() const |
| 783 | { |
no test coverage detected