+ wxBitmap GetBitmap() const { return m_bitmap; }
+ wxIcon GetIcon() const
+ {
+ // icons and bitmaps are really the same thing in wxMac
+ return (const wxIcon &)m_bitmap;
+ }
+ void SetIcon(const wxIcon& icon) { SetBitmap( (const wxBitmap &)icon ) ; }