Include macOS 11 name in wxGetOsDescription() (#1918)
This commit is contained in:
@@ -108,6 +108,15 @@ wxString wxGetOsDescription()
|
|||||||
break;
|
break;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
else if (majorVer > 10)
|
||||||
|
{
|
||||||
|
switch (majorVer)
|
||||||
|
{
|
||||||
|
case 11:
|
||||||
|
osName = "Big Sur";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
wxString osBrand = "iOS";
|
wxString osBrand = "iOS";
|
||||||
wxString osName;
|
wxString osName;
|
||||||
|
Reference in New Issue
Block a user