MCPcopy Create free account
hub / github.com/altairwei/WizNotePlus / formatPluginVersions

Method formatPluginVersions

lib/extensionsystem/pluginmanager.cpp:661–668  ·  view source on GitHub ↗

! Formats the version of the plugin specs for command line help. */

Source from the content-addressed store, hash-verified

659 Formats the version of the plugin specs for command line help.
660*/
661void PluginManager::formatPluginVersions(QTextStream &str)
662{
663 const PluginSpecSet::const_iterator cend = d->pluginSpecs.constEnd();
664 for (PluginSpecSet::const_iterator it = d->pluginSpecs.constBegin(); it != cend; ++it) {
665 const PluginSpec *ps = *it;
666 str << " " << ps->name() << ' ' << ps->version() << ' ' << ps->description() << '\n';
667 }
668}
669
670void PluginManager::startTests()
671{

Callers

nothing calls this directly

Calls 3

versionMethod · 0.80
descriptionMethod · 0.80
nameMethod · 0.45

Tested by

no test coverage detected