Mercurial > hg > svcore
diff plugin/PluginScan.cpp @ 1429:48e9f538e6e9
Untabify
author | Chris Cannam |
---|---|
date | Thu, 01 Mar 2018 18:02:22 +0000 |
parents | 0bbf91b05164 |
children | dcff44a76573 |
line wrap: on
line diff
--- a/plugin/PluginScan.cpp Thu Mar 01 14:43:40 2018 +0000 +++ b/plugin/PluginScan.cpp Thu Mar 01 18:02:22 2018 +0000 @@ -190,16 +190,16 @@ QMutexLocker locker(&m_mutex); if (!m_succeeded) { - return QObject::tr("<b>Failed to scan for plugins</b>" - "<p>Failed to scan for plugins at startup. Possibly " + return QObject::tr("<b>Failed to scan for plugins</b>" + "<p>Failed to scan for plugins at startup. Possibly " "the plugin checker program was not correctly " "installed alongside %1?</p>") .arg(QCoreApplication::applicationName()); } if (m_kp.empty()) { - return QObject::tr("<b>Did not scan for plugins</b>" - "<p>Apparently no scan for plugins was attempted " - "(internal error?)</p>"); + return QObject::tr("<b>Did not scan for plugins</b>" + "<p>Apparently no scan for plugins was attempted " + "(internal error?)</p>"); } QString report; @@ -207,12 +207,12 @@ report += QString::fromStdString(kp.second->getFailureReport()); } if (report == "") { - return report; + return report; } return QObject::tr("<b>Failed to load plugins</b>" - "<p>Failed to load one or more plugin libraries:</p>") - + report + "<p>Failed to load one or more plugin libraries:</p>") + + report + QObject::tr("<p>These plugins may be incompatible with the system, " "and will be ignored during this run of %1.</p>") .arg(QCoreApplication::applicationName());