/////////////////////////////////////////////////////////////////////////////
-// Name: utils.cpp
+// Name: src/mgl/utils.cpp
// Purpose:
// Author: Vaclav Slavik
// Id: $Id$
#endif
#include "wx/utils.h"
-#include "wx/string.h"
-#include "wx/intl.h"
+#ifndef WX_PRECOMP
+ #include "wx/string.h"
+ #include "wx/intl.h"
+ #include "wx/log.h"
+#endif
+
#include "wx/apptrait.h"
-#include "wx/log.h"
#include "wx/process.h"
#include <stdarg.h>
return g_displayDC->getBitsPerPixel();
}
-wxString wxGetOsDescription()
-{
- wxString osname(
-
-#if defined(__UNIX__)
- _T("Unix")
-#elif defined(__OS2__)
- _T("OS/2")
-#elif defined(__WIN32__)
- _T("Windows")
-#elif defined(__DOS__)
- _T("DOS")
-#else
- _T("unknown")
-#endif
-
- );
-
- return osname;
-}
-
#if wxUSE_GUI
wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo()