| Index: xfa/fwl/basewidget/fwl_comboboximp.cpp
|
| diff --git a/xfa/fwl/basewidget/fwl_comboboximp.cpp b/xfa/fwl/basewidget/fwl_comboboximp.cpp
|
| index 9d3a5db4c2b73d4891d64438531d7e2a1d83ccac..66d749a382ce499630eb24e3a0c9d701c0b724d1 100644
|
| --- a/xfa/fwl/basewidget/fwl_comboboximp.cpp
|
| +++ b/xfa/fwl/basewidget/fwl_comboboximp.cpp
|
| @@ -1556,7 +1556,7 @@ void CFWL_ComboBoxImpDelegate::DoSubCtrlKey(CFWL_MsgKey* pMsg) {
|
| FWL_HLISTITEM hItem = pData->GetItem(m_pOwner->m_pInterface, iCurSel);
|
| static_cast<CFWL_ComboListImp*>(m_pOwner->m_pListBox->GetImpl())
|
| ->GetItemText(hItem, wsTemp);
|
| - bMatchEqual = wsText.Equal(wsTemp);
|
| + bMatchEqual = wsText == wsTemp;
|
| }
|
| }
|
| if (iCurSel < 0) {
|
| @@ -1703,7 +1703,7 @@ void CFWL_ComboBoxImpDelegate::DisForm_OnKey(CFWL_MsgKey* pMsg) {
|
| CFX_WideString wsTemp;
|
| FWL_HLISTITEM item = m_pOwner->m_pListBox->GetSelItem(iCurSel);
|
| m_pOwner->m_pListBox->GetItemText(item, wsTemp);
|
| - bMatchEqual = wsText.Equal(wsTemp);
|
| + bMatchEqual = wsText == wsTemp;
|
| }
|
| }
|
| if (iCurSel < 0) {
|
|
|