mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DolphinQt: Get rid of unneeded abbreviation macros.
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user