macOS wxTextEntry::GetTextPeer fix for wxGenericComboCtrl (#1931)

* overriding GetTextPeer in generic combo control

* undo 81e3760e4a

* inlining GetTextPeer()

* moving out of line to reduce header include
This commit is contained in:
Stefan Csomor
2020-07-06 17:06:09 +02:00
committed by GitHub
parent 9be2c3717d
commit 792e4dcced
3 changed files with 9 additions and 9 deletions

View File

@@ -988,14 +988,7 @@ void wxOwnerDrawnComboBox::DoClear()
// There is no text entry when using wxCB_READONLY style, so test for it.
if ( GetTextCtrl() )
{
#ifdef __WXOSX__
// this has to be rerouted to the text control explicitly on macOS
GetTextCtrl()->Clear();
#else
wxTextEntry::Clear();
#endif
}
}
void wxOwnerDrawnComboBox::Clear()