]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/app.cpp
Private gsocket files were using 'typedef int bool', removed this
[wxWidgets.git] / src / msw / app.cpp
index 36dedf86274f91f679c2c1f192dc4153b49c3f08..3424745eafa1e9eefb0daeeac4afd21b526ccfce 100644 (file)
@@ -1289,11 +1289,11 @@ bool wxYield()
     // normally result in message boxes popping up &c
     wxLog::Suspend();
 
-#ifdef __WXDEBUG__    
+#ifdef __WXDEBUG__
     if (gs_inYield)
         wxFAIL_MSG( wxT("wxYield called recursively" ) );
 #endif
-    
+
     gs_inYield = TRUE;
 
     // we don't want to process WM_QUIT from here - it should be processed in
@@ -1327,7 +1327,7 @@ bool wxYieldIfNeeded()
 {
     if (gs_inYield)
         return FALSE;
-        
+
     return wxYield();
 }
 
@@ -1340,7 +1340,8 @@ bool wxHandleFatalExceptions(bool doit)
     return TRUE;
 #else
     wxFAIL_MSG(_T("set wxUSE_ON_FATAL_EXCEPTION to 1 to sue this function"));
-
+       
+       (void)doit;
     return FALSE;
 #endif
 }