! Formats the version of the plugin specs for command line help. */
| 659 | Formats the version of the plugin specs for command line help. |
| 660 | */ |
| 661 | void 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 | |
| 670 | void PluginManager::startTests() |
| 671 | { |
nothing calls this directly
no test coverage detected