X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..213ceb3f0e7b88a09d756dd181f14ecb5bd44d57:/include/wx/mac/carbon/combobox.h diff --git a/include/wx/mac/carbon/combobox.h b/include/wx/mac/carbon/combobox.h index 400029d0ec..774d7a13f4 100644 --- a/include/wx/mac/carbon/combobox.h +++ b/include/wx/mac/carbon/combobox.h @@ -6,7 +6,7 @@ // Created: 1998-01-01 // RCS-ID: $Id$ // Copyright: (c) Stefan Csomor -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_COMBOBOX_H_ @@ -21,6 +21,11 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxComboBoxNameStr; +// forward declaration of private implementation classes + +class wxComboBoxText ; +class wxComboBoxChoice ; + // Combobox item class WXDLLEXPORT wxComboBox : public wxControl, public wxComboBoxBase { @@ -128,8 +133,8 @@ protected: void FreeData(); // the subcontrols - wxTextCtrl* m_text; - wxChoice* m_choice; + wxComboBoxText* m_text; + wxComboBoxChoice* m_choice; }; #endif