]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/combobox.cpp
Mac compilation fix after const patch
[wxWidgets.git] / src / mac / carbon / combobox.cpp
index bbc3110dbdb678b3afeabec89c9272cfb7e96275..dd4234e85f536f0abbfdc42b7ff9e77d75b9ca32 100644 (file)
@@ -9,10 +9,6 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "combobox.h"
-#endif
-
 #include "wx/wxprec.h"
 
 #if wxUSE_COMBOBOX
@@ -295,6 +291,9 @@ bool wxComboBox::Enable(bool enable)
     if ( !wxControl::Enable(enable) )
         return false;
 
+    if (m_text)
+        m_text->Enable(enable);
+
     return true;
 }