From e630cd0454f36415d727498665062b82e8816a36 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 11 Feb 2008 22:30:58 +0000 Subject: [PATCH] use #ifdef __WXMAC__, not #if git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51666 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/drawing/drawing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/drawing/drawing.cpp b/samples/drawing/drawing.cpp index a4870c9691..b3d64dae55 100644 --- a/samples/drawing/drawing.cpp +++ b/samples/drawing/drawing.cpp @@ -1527,7 +1527,7 @@ void MyCanvas::OnMouseMove(wxMouseEvent &event) wxDCOverlay overlaydc( m_overlay, &dc ); overlaydc.Clear(); -#if __WXMAC__ +#ifdef __WXMAC__ dc.SetPen( *wxGREY_PEN ); dc.SetBrush( wxColour( 192,192,192,64 ) ); #else -- 2.45.2