Fix commit 7741f74ae - Show more mac versions in about dialog

This commit is contained in:
Bruce B. Lacey
2017-03-28 11:03:53 -07:00
parent 7983a79bca
commit 0ca5ebe784

View File

@@ -326,8 +326,12 @@ static QString getOperatingSystem()
return QString::fromLatin1("Mac OS X 10.9");
case QSysInfo::MV_10_10:
return QString::fromLatin1("Mac OS X 10.10");
#endif
#if QT_VERSION >= 0x050500
case QSysInfo::MV_10_11:
return QString::fromLatin1("Mac OS X 10.11");
#endif
#if QT_VERSION >= 0x050600
case QSysInfo::MV_10_12:
return QString::fromLatin1("Mac OS X 10.12");
#endif