Include macOS 14 name in wxGetOsDescription()

Recognize macOS Sonoma too.

Closes #23615.
This commit is contained in:
Tobias Taschner 2023-06-06 09:54:30 +02:00 committed by Vadim Zeitlin
parent a801057f1a
commit db09adf6b5

View file

@ -110,6 +110,9 @@ wxString wxGetOsDescription()
case 13:
osName = "Ventura";
break;
case 14:
osName = "Sonoma";
break;
}
}
#else