Recognize macOS 10.15 in wxGetOsDescription()

Closes https://github.com/wxWidgets/wxWidgets/pull/1613
This commit is contained in:
Ian McInerney 2019-10-21 15:39:25 +01:00 committed by Vadim Zeitlin
parent 8949f441fd
commit f867b04571

View File

@ -160,6 +160,9 @@ wxString wxGetOsDescription()
case 14:
osName = "Mojave";
break;
case 15:
osName = "Catalina";
break;
};
}
#else