MCPcopy Create free account
hub / github.com/KDE/kdevelop / projectPlugins

Method projectPlugins

kdevplatform/shell/plugincontroller.cpp:810–821  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

808}
809
810QStringList PluginController::projectPlugins() const
811{
812 Q_D(const PluginController);
813
814 QStringList names;
815 for (const KPluginMetaData& info : std::as_const(d->plugins)) {
816 if (info.value(KEY_Category()) == KEY_Project()) {
817 names << info.pluginId();
818 }
819 }
820 return names;
821}
822
823void PluginController::loadProjectPlugins()
824{

Callers

nothing calls this directly

Calls 4

KEY_CategoryFunction · 0.85
KEY_ProjectFunction · 0.85
pluginIdMethod · 0.80
valueMethod · 0.45

Tested by

no test coverage detected