* \brief Get the file names of all loaded plugins. */
| 198 | * \brief Get the file names of all loaded plugins. |
| 199 | */ |
| 200 | QStringList PluginManager::loadedPluginFileNames() { |
| 201 | QStringList result; |
| 202 | for (auto* loader : m_loadedPlugins) |
| 203 | result << loader->fileName(); |
| 204 | return result; |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | * \brief Get the file names of all plugins that failed to load. |