From c31d8e81f0628a92d22dde9c38f5138df437b1f0 Mon Sep 17 00:00:00 2001 From: Catalin Date: Sun, 21 Feb 2016 12:05:33 +0200 Subject: [PATCH] Do not return obsolete OS family names. --- src/common/platinfo.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/common/platinfo.cpp b/src/common/platinfo.cpp index e091ee44bd..df37e5699e 100644 --- a/src/common/platinfo.cpp +++ b/src/common/platinfo.cpp @@ -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; }