From: Gilles Depeyrot Date: Wed, 27 Jun 2001 19:27:30 +0000 (+0000) Subject: corrected wxICON for Mac OS (Classic and X) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0532484d0f2f5fd592c16522a2b45e84422c9a5f corrected wxICON for Mac OS (Classic and X) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10688 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/gdicmn.h b/include/wx/gdicmn.h index d1443c05f5..063bce9b80 100644 --- a/include/wx/gdicmn.h +++ b/include/wx/gdicmn.h @@ -158,6 +158,9 @@ enum wxStockCursor #elif defined(__WXGTK__) // Initialize from an included XPM #define wxICON(X) wxIcon( (const char**) X##_xpm ) +#elif defined(__WXMAC__) + // Initialize from an included XPM + #define wxICON(X) wxIcon( (const char**) X##_xpm ) #elif defined(__WXMOTIF__) // Initialize from an included XPM #define wxICON(X) wxIcon( X##_xpm )