]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/seh.h
Add lambda-friendly wxDialog::ShowWindowModalThenDo().
[wxWidgets.git] / include / wx / msw / seh.h
index 7fcfb7a7196a64f8f03136980418284e6385257e..a331570d757ab645324eb1f3e3398998d7e34787 100644 (file)
@@ -3,7 +3,6 @@
 // Purpose:     declarations for SEH (structured exceptions handling) support
 // Author:      Vadim Zeitlin
 // Created:     2006-04-26
-// RCS-ID:      $Id$
 // Copyright:   (c) 2006 Vadim Zeitlin <vadim@wxwindows.org>
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
     // as division by 0 or access violation) to C++ pseudo-exceptions
     extern void wxSETranslator(unsigned int code, EXCEPTION_POINTERS *ep);
 
-    // up to VC 9 this warning ("calling _set_se_translator() requires /EHa")
+    // up to VC 11 this warning ("calling _set_se_translator() requires /EHa")
     // is harmless and it's easier to suppress it than use different makefiles
-    // for VC5 and 6 (which don't support /EHa at all) and VC7 (which does
+    // for VC5 and 6 (which don't support /EHa at all) and VC7+ (which does
     // accept it but it seems to change nothing for it anyhow)
-    #if __VISUALC__ < 1600
+    #if __VISUALC__ < 1800
         #pragma warning(disable: 4535)
     #endif