]> git.saurik.com Git - wxWidgets.git/commitdiff
fix some harmless compilation in (release) MSVC build
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 27 May 2008 22:48:54 +0000 (22:48 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 27 May 2008 22:48:54 +0000 (22:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53796 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/app.cpp
src/msw/utils.cpp

index 32779c348d776699b85e21e4d0f5e6e039fa5f63..31ce0f4bb419ea49dc368297a395a5d7aac32be0 100644 (file)
@@ -478,7 +478,10 @@ int wxConsoleStderr::GetCommandHistory(wxWxCharBuffer& buf) const
     {
         buf.extend(len);
         const int len2 = m_pfnGetConsoleCommandHistory(buf.data(), len, CMD_EXE);
-        wxASSERT_MSG( len2 == len, _T("failed getting history?") );
+        if ( len2 != len )
+        {
+            wxFAIL_MSG( _T("failed getting history?") );
+        }
     }
 
     return len;
index baffd0fc976af6850bd904285f10ac304a535b92..7d99de260ffbaa0dc0b3425e39dc3cfa9d2c95a7 100644 (file)
@@ -1180,7 +1180,7 @@ wxString wxGetOsDescription()
                                 // we can't distinguish between XP 64 and 2003
                                 // as they both are 5.2, so examine the product
                                 // type to resolve this ambiguity
-                                if ( wxIsWindowsServer() == true )
+                                if ( wxIsWindowsServer() == 1 )
                                 {
                                     str.Printf(_("Windows Server 2003 (build %lu"),
                                                info.dwBuildNumber);