From: Vadim Zeitlin Date: Tue, 27 May 2008 16:00:22 +0000 (+0000) Subject: add a mention to OS description string if running under a 64-bit Windows version X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d4885e10dd321c69ce38ca80f3a0dad45be88bb3?ds=inline add a mention to OS description string if running under a 64-bit Windows version git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53785 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/utils.cpp b/src/msw/utils.cpp index d86d45d0c5..d2b7d97c53 100644 --- a/src/msw/utils.cpp +++ b/src/msw/utils.cpp @@ -1175,6 +1175,9 @@ wxString wxGetOsDescription() str << _T(", ") << info.szCSDVersion; } str << _T(')'); + + if ( wxIsPlatform64Bit() ) + str << _(", 64-bit edition"); break; } }