forward declaration for combobox members
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 7 Aug 2004 05:18:35 +0000 (05:18 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 7 Aug 2004 05:18:35 +0000 (05:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28691 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/carbon/combobox.h

index 14d9b055a33060260bcce2cca86a9938992cb12d..774d7a13f4417737ad6a5d5df999e07a9116f1a4 100644 (file)
 
 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