From: Stefan Csomor Date: Sat, 19 Feb 2005 15:42:37 +0000 (+0000) Subject: switching to IconRefs for menu bitmaps X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b2f3b00bd2903e76efeb44360cb0f475d1f16e19?ds=inline switching to IconRefs for menu bitmaps git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32186 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/menuitem.cpp b/src/mac/carbon/menuitem.cpp index ccfcf8da8d..0b9094a12f 100644 --- a/src/mac/carbon/menuitem.cpp +++ b/src/mac/carbon/menuitem.cpp @@ -87,12 +87,12 @@ void wxMenuItem::UpdateItemBitmap() if ( m_bitmap.Ok() ) { ControlButtonContentInfo info ; - wxMacCreateBitmapButton( &info , m_bitmap , kControlContentCIconHandle ) ; + wxMacCreateBitmapButton( &info , m_bitmap ) ; if ( info.contentType != kControlNoContent ) { - if ( info.contentType == kControlContentCIconHandle ) + if ( info.contentType == kControlContentIconRef ) SetMenuItemIconHandle( mhandle , index , - kMenuColorIconType , (Handle) info.u.cIconHandle ) ; + kMenuIconRefType , (Handle) info.u.iconRef ) ; } wxMacReleaseBitmapButton( &info ) ;