X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cba5db5ff0eb2a05ff042789b212a4e9ee0db676..61ecf6d34ffb087e4a02d1c4e29e1f155875eba0:/include/wx/mac/choice.h?ds=inline diff --git a/include/wx/mac/choice.h b/include/wx/mac/choice.h index 3f796ac070..a122f95f37 100644 --- a/include/wx/mac/choice.h +++ b/include/wx/mac/choice.h @@ -12,7 +12,7 @@ #ifndef _WX_CHOICE_H_ #define _WX_CHOICE_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "choice.h" #endif @@ -27,11 +27,14 @@ WX_DEFINE_ARRAY( char * , wxChoiceDataArray ) ; // Choice item class WXDLLEXPORT wxChoice: public wxChoiceBase { - DECLARE_DYNAMIC_CLASS(wxChoice) + DECLARE_DYNAMIC_CLASS(wxChoice) - public: - wxChoice() {} - virtual ~wxChoice() ; +public: + wxChoice() + : m_strings(), m_datas(), m_macPopUpMenuHandle(NULL) + {} + + virtual ~wxChoice() ; wxChoice(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, @@ -64,7 +67,7 @@ class WXDLLEXPORT wxChoice: public wxChoiceBase virtual int FindString(const wxString& s) const; virtual wxString GetString(int n) const ; virtual void SetString( int , const wxString& s ) ; - void MacHandleControlClick( ControlHandle control , SInt16 controlpart ) ; + void MacHandleControlClick( WXWidget control , wxInt16 controlpart ) ; /* virtual void Append(const wxString& item); @@ -78,7 +81,7 @@ class WXDLLEXPORT wxChoice: public wxChoiceBase // Mac specific virtual void Command(wxCommandEvent& event); - void MacHandleControlClick( ControlHandle control , SInt16 controlpart ) ; + void MacHandleControlClick( WXWidget control , wxInt16 controlpart ) ; virtual inline int GetColumns() const { return 1 ; }; */ @@ -90,11 +93,12 @@ protected: virtual wxClientData* DoGetItemClientObject( int n ) const; // free all memory we have (used by Clear() and dtor) - void Free(); + // prevent collision with some BSD definitions of macro Free() + void FreeData(); wxArrayString m_strings; wxChoiceDataArray m_datas ; - MenuHandle m_macPopUpMenuHandle ; + WXHMENU m_macPopUpMenuHandle ; }; #endif