* \brief Get the file names of all plugins that failed to load. */
| 208 | * \brief Get the file names of all plugins that failed to load. |
| 209 | */ |
| 210 | QStringList PluginManager::failedPluginFileNames() { |
| 211 | QStringList result; |
| 212 | for (auto* loader : m_pluginsWithErrors) |
| 213 | result << loader->fileName(); |
| 214 | return result; |
| 215 | } |
| 216 | |
| 217 | /** |
| 218 | * \brief Get the error messages of a plugin that failed to load. |