DolphinQt: Get rid of unneeded abbreviation macros.

This commit is contained in:
waddlesplash
2015-11-25 23:05:43 -05:00
parent 662e4fcca0
commit 4acd90d570
9 changed files with 110 additions and 115 deletions

View File

@ -11,7 +11,6 @@
#include "MainWindow.h"
#include "DolphinQt/Utils/Utils.h"
#include "UICommon/UICommon.h"
static bool IsOsSupported()
@ -28,11 +27,11 @@ static bool IsOsSupported()
static QString LowestSupportedOsVersion()
{
#ifdef Q_OS_OSX
return SL("Mac OS X 10.9");
return QStringLiteral("Mac OS X 10.9");
#elif defined(Q_OS_WIN)
return SL("Windows Vista SP2");
return QStringLiteral("Windows Vista SP2");
#else
return SL("Unknown");
return QStringLiteral("Unknown");
#endif
}