Index: xfa/fwl/core/ifwl_combolist.cpp |
diff --git a/xfa/fwl/core/ifwl_combolist.cpp b/xfa/fwl/core/ifwl_combolist.cpp |
index be167be1774ea158918bc65242d7c43e59c4abc4..7f178fd1b75bd9a66592175a35c4d92f47c151f1 100644 |
--- a/xfa/fwl/core/ifwl_combolist.cpp |
+++ b/xfa/fwl/core/ifwl_combolist.cpp |
@@ -171,12 +171,7 @@ void IFWL_ComboList::OnDropListMouseMove(CFWL_MsgMouse* pMsg) { |
IFWL_ListBoxDP* pData = |
static_cast<IFWL_ListBoxDP*>(m_pProperties->m_pDataProvider); |
- int32_t iSel = pData->GetItemIndex(this, hItem); |
- CFWL_EvtCmbHoverChanged event; |
- event.m_pSrcTarget = m_pOuter; |
- event.m_iCurHover = iSel; |
- DispatchEvent(&event); |
- ChangeSelected(iSel); |
+ ChangeSelected(pData->GetItemIndex(this, hItem)); |
} else if (m_bNotifyOwner) { |
ClientToOuter(pMsg->m_fx, pMsg->m_fy); |
IFWL_ComboBox* pOuter = static_cast<IFWL_ComboBox*>(m_pOuter); |