Update Main.cpp version checks.

This commit is contained in:
comex
2014-11-19 14:49:56 -05:00
parent e631f68c1b
commit 759ea3bce7
2 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@
static bool IsOsSupported()
{
#ifdef Q_OS_OSX
return QSysInfo::MacintoshVersion >= QSysInfo::MV_10_7;
return QSysInfo::MacintoshVersion >= QSysInfo::MV_10_9;
#elif defined(Q_OS_WIN)
return (QSysInfo::WindowsVersion & QSysInfo::WV_NT_based) >= QSysInfo::WV_VISTA;
#else
@ -28,7 +28,7 @@ static bool IsOsSupported()
static QString LowestSupportedOsVersion()
{
#ifdef Q_OS_OSX
return SL("Mac OS X 10.7");
return SL("Mac OS X 10.9");
#elif defined(Q_OS_WIN)
return SL("Windows Vista SP2");
#else