]> git.saurik.com Git - wxWidgets.git/commitdiff
Disable CallAfter() for MSVC 7 too, it can't compile this code.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 26 Nov 2012 15:51:04 +0000 (15:51 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 26 Nov 2012 15:51:04 +0000 (15:51 +0000)
It was already disabled for VC6 but VC7 doesn't compile this code neither, so
disable it for this compiler as well.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73025 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/event.h
interface/wx/event.h

index 99710b7d7c625fee19ea2b3cb567bc8b419b2b6b..6e4805549c66deafbd7b146d0a262645f2ec7baa 100644 (file)
     #include "wx/meta/convertible.h"
 #endif
 
-#include "wx/meta/removeref.h"
+// Currently VC6 and VC7 are known to not be able to compile CallAfter() code,
+// so disable it for them.
+#if !defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(8)
+    #include "wx/meta/removeref.h"
 
-#ifdef wxHAS_REMOVEREF
-    // CallAfter() implementation requires wxRemoveRef(), so just disable it
-    // for compilers too broken to not allow defining it.
     #define wxHAS_CALL_AFTER
 #endif
 
index 00b5427ba1bdca0c15fbe5af683a2e4bcd8b7a94..f00dc12b0ffa5ee604784c5abe01f41dc4be7738 100644 (file)
@@ -527,7 +527,8 @@ public:
 
          Note that currently only up to 2 arguments can be passed.
 
-         @note This method is not available with Visual C++ 6 which doesn't
+         @note This method is not available with Visual C++ before version 8
+               (Visual Studio 2005) as earlier versions of the compiler don't
                have the required support for C++ templates to implement it.
 
          @since 2.9.5