]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/caret.h
changed wxHAS_NATIVE_OVERLAY and wxHAS_CARET_USING_OVERLAYS to use #ifdef instead...
[wxWidgets.git] / include / wx / generic / caret.h
index f9dd4d386626284d577e1e99b00555510f627bc9..e19212316d87416fb3d5b0e2d606846dab3df387 100644 (file)
 #include "wx/dc.h"
 #include "wx/overlay.h"
 
-#if wxHAS_NATIVE_OVERLAY
-    #define wxHAS_CARET_USING_OVERLAYS 1
-#else
-    #define wxHAS_CARET_USING_OVERLAYS 0
+#ifdef wxHAS_NATIVE_OVERLAY
+    #define wxHAS_CARET_USING_OVERLAYS
 #endif
 
 class WXDLLIMPEXP_CORE wxCaret;
@@ -78,7 +76,7 @@ private:
     // GTK specific initialization
     void InitGeneric();
 
-#if wxHAS_CARET_USING_OVERLAYS
+#ifdef wxHAS_CARET_USING_OVERLAYS
     // the overlay for displaying the caret
     wxOverlay   m_overlay;
 #else