use FindWindowEx() instead of ChildWindowFromPoint() in wxComboBox::GetEditHWNDIfAvailable(), this should find the child edit control whatever is the combobox size

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50115 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2007-11-20 22:34:20 +00:00
parent 105a81f3e4
commit 9740be9800

View File

@ -396,12 +396,9 @@ bool wxComboBox::MSWShouldPreProcessMessage(WXMSG *pMsg)
WXHWND wxComboBox::GetEditHWNDIfAvailable() const
{
POINT pt = { 4, 4 };
WXHWND hWndEdit = (WXHWND)::ChildWindowFromPoint(GetHwnd(), pt);
if ( hWndEdit == GetHWND() )
hWndEdit = NULL;
return hWndEdit;
// we assume that the only child of the combobox is the edit window so it's
// unnecessary to pass "EDIT" as class name parameter
return (WXHWND)::FindWindowEx(GetHwnd(), NULL, NULL, NULL);
}
WXHWND wxComboBox::GetEditHWND() const