]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/combobox.cpp
Fix for mistake with const for non pointer/reference with corrections in documentation.
[wxWidgets.git] / src / mac / carbon / combobox.cpp
index bbc3110dbdb678b3afeabec89c9272cfb7e96275..d1cc089a881811b27b260209e891adbea9bc5d5e 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////
-// Name:        combobox.cpp
+// Name:        src/mac/carbon/combobox.cpp
 // Purpose:     wxComboBox class
 // Author:      Stefan Csomor
 // Modified by:
 // Purpose:     wxComboBox class
 // Author:      Stefan Csomor
 // Modified by:
@@ -9,10 +9,6 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "combobox.h"
-#endif
-
 #include "wx/wxprec.h"
 
 #if wxUSE_COMBOBOX
 #include "wx/wxprec.h"
 
 #if wxUSE_COMBOBOX
@@ -89,7 +85,7 @@ protected:
         if (m_cb->GetEventHandler()->ProcessEvent(kevt))
             // If the event was handled and not skipped then we're done
             return;
         if (m_cb->GetEventHandler()->ProcessEvent(kevt))
             // If the event was handled and not skipped then we're done
             return;
-        
+
         if ( event.GetKeyCode() == WXK_RETURN )
         {
             wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_cb->GetId());
         if ( event.GetKeyCode() == WXK_RETURN )
         {
             wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_cb->GetId());
@@ -140,14 +136,14 @@ protected:
         if (! m_cb->GetEventHandler()->ProcessEvent(event))
             event.Skip();
     }
         if (! m_cb->GetEventHandler()->ProcessEvent(event))
             event.Skip();
     }
-    
+
     void OnText( wxCommandEvent& event )
     {
         event.SetEventObject(m_cb);
         event.SetId(m_cb->GetId());
         if (! m_cb->GetEventHandler()->ProcessEvent(event))
             event.Skip();
     void OnText( wxCommandEvent& event )
     {
         event.SetEventObject(m_cb);
         event.SetId(m_cb->GetId());
         if (! m_cb->GetEventHandler()->ProcessEvent(event))
             event.Skip();
-    }        
+    }
 
 private:
     wxComboBox *m_cb;
 
 private:
     wxComboBox *m_cb;
@@ -295,6 +291,9 @@ bool wxComboBox::Enable(bool enable)
     if ( !wxControl::Enable(enable) )
         return false;
 
     if ( !wxControl::Enable(enable) )
         return false;
 
+    if (m_text)
+        m_text->Enable(enable);
+
     return true;
 }
 
     return true;
 }
 
@@ -382,7 +381,7 @@ bool wxComboBox::Create(wxWindow *parent, wxWindowID id,
 
     SetBestSize(size);   // Needed because it is a wxControlWithItems
     SetStringSelection(value);
 
     SetBestSize(size);   // Needed because it is a wxControlWithItems
     SetStringSelection(value);
-    
+
     return true;
 }
 
     return true;
 }
 
@@ -569,9 +568,9 @@ void wxComboBox::SetSelection(int n)
     }
 }
 
     }
 }
 
-int wxComboBox::FindString(const wxString& s) const
+int wxComboBox::FindString(const wxString& s, bool bCase) const
 {
 {
-    return m_choice->FindString( s );
+    return m_choice->FindString( s, bCase );
 }
 
 wxString wxComboBox::GetString(int n) const
 }
 
 wxString wxComboBox::GetString(int n) const