Rename wxPlatformInfo::*Arch* to *Bitness*, deprecate old names

This commit is contained in:
Lauri Nurmi
2020-11-21 17:48:42 +02:00
parent 68ea3c59f1
commit b74702543b
4 changed files with 102 additions and 29 deletions

View File

@@ -280,7 +280,7 @@ void InteractiveOutputTestCase::TestPlatformInfo()
wxPrintf(wxT("Operating system name is: %s\n"), plat.GetOperatingSystemIdName());
wxPrintf(wxT("Port ID name is: %s\n"), plat.GetPortIdName());
wxPrintf(wxT("Port ID short name is: %s\n"), plat.GetPortIdShortName());
wxPrintf(wxT("Architecture bitness is: %s\n"), plat.GetArchName());
wxPrintf(wxT("Architecture bitness is: %s\n"), plat.GetBitnessName());
wxPrintf(wxT("Endianness is: %s\n"), plat.GetEndiannessName());
wxPuts(wxEmptyString);