]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/combobox.cpp
fixing native font info support bugs
[wxWidgets.git] / src / osx / carbon / combobox.cpp
index 54c70ebca55c6121be9a8e659237094409b96bf5..53b729485e8be4e7274973a2f6856ccc49ca0ef6 100644 (file)
@@ -394,6 +394,13 @@ bool wxComboBox::Create(wxWindow *parent,
     return true;
 }
 
+wxString wxComboBox::DoGetValue() const
+{
+    wxCHECK_MSG( m_text, wxString(), "can't be called for read-only combobox" );
+
+    return m_text->GetValue();
+}
+
 wxString wxComboBox::GetValue() const
 {
     wxString        result;
@@ -652,7 +659,7 @@ bool wxComboBox::CanRedo() const
         return false;
 }
 
-bool wxComboBox::HandleClicked( double timestampsec )
+bool wxComboBox::OSXHandleClicked( double WXUNUSED(timestampsec) )
 {
 /*
     For consistency with other platforms, clicking in the text area does not constitute a selection