]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/combobox.h
Source cleaning: whitespaces & tabs, ::, TRUE/true, FALSE/false.
[wxWidgets.git] / include / wx / mac / carbon / combobox.h
index 400029d0ec984246e530b20b93162e75f8efac29..774d7a13f4417737ad6a5d5df999e07a9116f1a4 100644 (file)
@@ -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_
 
 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