1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 01:22:10 +01:00

Fix issue with missing semicolon with portable Windows builds.

This commit is contained in:
laoch 2013-04-17 08:46:19 -05:00
parent 5740873ed6
commit ad33d353af

View File

@ -176,8 +176,9 @@ void Plugins::loadAvailablePlugins()
<< "/usr/lib/qupzilla/"
#endif
#endif
<< mApp->PROFILEDIR + "plugins/";
<< mApp->PROFILEDIR + "plugins/"
#endif
;
foreach (const QString &dir, dirs) {
QDir pluginsDir = QDir(dir);