Redirect wxComboBox::SetFocus to its text field Part I.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15648 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -191,6 +191,11 @@ bool wxComboBox::Show(bool show)
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void wxComboBox::SetFocus()
|
||||||
|
{
|
||||||
|
m_text->SetFocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void wxComboBox::DelegateTextChanged( const wxString& value ) {
|
void wxComboBox::DelegateTextChanged( const wxString& value ) {
|
||||||
}
|
}
|
||||||
|
@@ -191,6 +191,11 @@ bool wxComboBox::Show(bool show)
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void wxComboBox::SetFocus()
|
||||||
|
{
|
||||||
|
m_text->SetFocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void wxComboBox::DelegateTextChanged( const wxString& value ) {
|
void wxComboBox::DelegateTextChanged( const wxString& value ) {
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user