| Index: fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| diff --git a/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp b/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| index 932f8c56d681ced02959f1bb021bccc453df9d9d..2a9afe7dc6bcea3be7174fc39cf69c3668609bb7 100644
|
| --- a/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| +++ b/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| @@ -594,10 +594,7 @@ FX_BOOL CPWL_ComboBox::OnChar(FX_WORD nChar, FX_DWORD nFlag) {
|
| if (bExit)
|
| return FALSE;
|
| }
|
| - if (m_pList->OnCharWithExit(nChar, bExit, nFlag))
|
| - return bExit;
|
| -
|
| - return FALSE;
|
| + return m_pList->OnCharWithExit(nChar, bExit, nFlag) ? bExit : FALSE;
|
| }
|
|
|
| void CPWL_ComboBox::OnNotify(CPWL_Wnd* pWnd,
|
|
|