Do not return obsolete OS family names.

This commit is contained in:
Catalin
2016-02-21 12:05:33 +02:00
parent 773ce1d58e
commit c31d8e81f0

View File

@@ -235,10 +235,6 @@ wxString wxPlatformInfo::GetOperatingSystemFamilyName(wxOperatingSystemId os)
string = wxT("Windows");
else if ( os & wxOS_UNIX )
string = wxT("Unix");
else if ( os == wxOS_DOS )
string = wxT("DOS");
else if ( os == wxOS_OS2 )
string = wxT("OS/2");
return string;
}