Remove obsolete mentions of Windows 9x, Windows CE and OS/2.
This commit is contained in:
Vadim Zeitlin
2017-02-20 17:46:45 +01:00
63 changed files with 133 additions and 674 deletions

View File

@@ -260,9 +260,9 @@ wxVideoMode wxDisplayMSW::GetCurrentMode() const
{
wxVideoMode mode;
// The first parameter of EnumDisplaySettings() must be NULL under Win95
// according to MSDN. The version of GetName() we implement for Win95
// returns an empty string.
// The first parameter of EnumDisplaySettings() must be NULL according
// to MSDN, in order to specify the current display on the computer
// on which the calling thread is running.
const wxString name = GetName();
const wxChar * const deviceName = name.empty()
? (const wxChar*)NULL
@@ -288,9 +288,9 @@ wxArrayVideoModes wxDisplayMSW::GetModes(const wxVideoMode& modeMatch) const
{
wxArrayVideoModes modes;
// The first parameter of EnumDisplaySettings() must be NULL under Win95
// according to MSDN. The version of GetName() we implement for Win95
// returns an empty string.
// The first parameter of EnumDisplaySettings() must be NULL according
// to MSDN, in order to specify the current display on the computer
// on which the calling thread is running.
const wxString name = GetName();
const wxChar * const deviceName = name.empty()
? (const wxChar*)NULL