Remove extra bracket!

This commit is contained in:
craig.p.drummond
2014-06-12 19:00:24 +00:00
committed by craig.p.drummond
parent 8f0f9d5825
commit 31c8fcb3c4

View File

@@ -722,7 +722,7 @@ QString Utils::helper(const QString &app)
#if defined Q_OS_WIN
return systemDir(QLatin1String("helpers"))+app+QLatin1String(".exe");
#elif defined Q_OS_MAC
return systemDir(QLatin1String("helpers"))+app);
return systemDir(QLatin1String("helpers"))+app;
#else
return QString(INSTALL_PREFIX "/lib/")+QCoreApplication::applicationName()+constDirSep+app;
#endif