X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0280ab6e8edc09e1c41ae1f23887f4f4dd0706e7..7b466aee088c864029f6838ecc598010cd68412b:/src/mgl/utils.cpp diff --git a/src/mgl/utils.cpp b/src/mgl/utils.cpp index c6e0332746..209597e140 100644 --- a/src/mgl/utils.cpp +++ b/src/mgl/utils.cpp @@ -18,6 +18,7 @@ #include "wx/string.h" #include "wx/intl.h" +#include "wx/apptrait.h" #include "wx/log.h" #include "wx/process.h" @@ -207,24 +208,26 @@ int wxDisplayDepth() return g_displayDC->getBitsPerPixel(); } -int wxGetOsVersion(int *majorVsn, int *minorVsn) +wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo() { - if ( majorVsn ) - *majorVsn = MGL_RELEASE_MAJOR; - if ( minorVsn ) - *minorVsn = MGL_RELEASE_MINOR; - + static wxToolkitInfo info; + info.shortName = _T("mgluniv"); + info.name = _T("wxMGL"); + info.versionMajor = MGL_RELEASE_MAJOR; + info.versionMinor = MGL_RELEASE_MINOR; + info.os = wxGTK; #if defined(__UNIX__) - return wxMGL_UNIX; + info.os = wxMGL_UNIX; #elif defined(__OS2__) - return wxMGL_OS2; + info.os = wxMGL_OS2; #elif defined(__WIN32__) - return wxMGL_WIN32; + info.os = wxMGL_WIN32; #elif defined(__DOS__) - return wxMGL_DOS; + info.os = wxMGL_DOS; #else #error Platform not supported by wxMGL! #endif + return info; }