Fix commit 0bebddf28 - Show more mac versions in about dialog

This commit is contained in:
Bruce B. Lacey
2017-03-28 11:03:53 -07:00
parent 6e2285e6ff
commit 8106aaf59b

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