| 385 | } |
| 386 | |
| 387 | KTextEditor::Plugin *Application::plugin(const QString &id) const |
| 388 | { |
| 389 | auto kdevPlugin = Core::self()->pluginController()->loadPlugin(id); |
| 390 | const auto plugin = dynamic_cast<Plugin*>(kdevPlugin); |
| 391 | return plugin ? plugin->interface() : nullptr; |
| 392 | } |
| 393 | |
| 394 | QList<KTextEditor::Document *> Application::documents() |
| 395 | { |
nothing calls this directly
no test coverage detected