From 2f34cf6090a84ab1fab6f906dcb8bb108c76eec4 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 4 Oct 2006 03:19:19 +0000 Subject: [PATCH] Avoid warnings when wxMAC_USE_CORE_GRAPHICS_BLEND_MODES is not defined git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41620 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/graphcmn.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/graphcmn.cpp b/src/common/graphcmn.cpp index 65a5dd067f..16e83757db 100644 --- a/src/common/graphcmn.cpp +++ b/src/common/graphcmn.cpp @@ -34,6 +34,10 @@ #if wxUSE_GRAPHICS_CONTEXT +#if !defined(wxMAC_USE_CORE_GRAPHICS_BLEND_MODES) +#define wxMAC_USE_CORE_GRAPHICS_BLEND_MODES 0 +#endif + //----------------------------------------------------------------------------- // constants //----------------------------------------------------------------------------- -- 2.50.0