git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28691
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
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
{
void FreeData();
// the subcontrols
- wxTextCtrl* m_text;
- wxChoice* m_choice;
+ wxComboBoxText* m_text;
+ wxComboBoxChoice* m_choice;
};
#endif