]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msdos/utilsdos.cpp
can't pass objects through ... (please don't ever ignore this gcc warning)
[wxWidgets.git] / src / msdos / utilsdos.cpp
index ff9814800121be93892adf84f85f6aaee6e9735f..c8b1151512820291ff3d85d2526d572077ed3ca0 100644 (file)
@@ -207,17 +207,6 @@ wxChar *wxGetUserHome(const wxString& user)
         return _T("");
 }
 
         return _T("");
 }
 
-#if WXWIN_COMPATIBILITY_2_2
-void wxFatalError(const wxString &msg, const wxString &title)
-{
-    wxFprintf( stderr, _("Error ") );
-    if (!title.IsNull()) wxFprintf( stderr, wxT("%s "), WXSTRINGCAST(title) );
-    if (!msg.IsNull()) wxFprintf( stderr, wxT(": %s"), WXSTRINGCAST(msg) );
-    wxFprintf( stderr, wxT(".\n") );
-    exit(3); // the same exit code as for abort()
-}
-#endif // WXWIN_COMPATIBILITY_2_2
-
 // returns %UserName%, $USER or just "user"
 //
 bool wxGetUserId(wxChar *buf, int n)
 // returns %UserName%, $USER or just "user"
 //
 bool wxGetUserId(wxChar *buf, int n)
@@ -488,3 +477,13 @@ wxToolkitInfo& wxConsoleAppTraits::GetToolkitInfo()
     info.os = wxDOS;
     return info;
 }
     info.os = wxDOS;
     return info;
 }
+
+//----------------------------------------------------------------------------
+// OS Description
+//----------------------------------------------------------------------------
+
+wxString wxGetOsDescription()
+{
+    wxString osname(_T("DOS"));
+    return osname;
+}