Chromium Code Reviews| Index: xfa/fxfa/app/xfa_ffchoicelist.cpp |
| diff --git a/xfa/fxfa/app/xfa_ffchoicelist.cpp b/xfa/fxfa/app/xfa_ffchoicelist.cpp |
| index 93e270da3e0411ad57f9ef5bc56bd670aac7158f..e516ffde95f291f1073ad9f65f15ff01f43259a3 100644 |
| --- a/xfa/fxfa/app/xfa_ffchoicelist.cpp |
| +++ b/xfa/fxfa/app/xfa_ffchoicelist.cpp |
| @@ -439,14 +439,14 @@ bool CXFA_FFComboBox::Paste(const CFX_WideString& wsPaste) { |
| return m_pDataAcc->IsChoiceListAllowTextEntry() && |
| ((CFWL_ComboBox*)m_pNormalWidget)->EditPaste(wsPaste); |
| } |
| -bool CXFA_FFComboBox::SelectAll() { |
| - return ((CFWL_ComboBox*)m_pNormalWidget)->EditSelectAll(); |
| +void CXFA_FFComboBox::SelectAll() { |
|
dsinclair
2016/11/16 16:56:21
This file is a mess, but I'm ignoring it for now.
npm
2016/11/16 18:37:57
Acknowledged.
|
| + ((CFWL_ComboBox*)m_pNormalWidget)->EditSelectAll(); |
| } |
| -bool CXFA_FFComboBox::Delete() { |
| - return ((CFWL_ComboBox*)m_pNormalWidget)->EditDelete(); |
| +void CXFA_FFComboBox::Delete() { |
| + ((CFWL_ComboBox*)m_pNormalWidget)->EditDelete(); |
| } |
| -bool CXFA_FFComboBox::DeSelect() { |
| - return ((CFWL_ComboBox*)m_pNormalWidget)->EditDeSelect(); |
| +void CXFA_FFComboBox::DeSelect() { |
| + ((CFWL_ComboBox*)m_pNormalWidget)->EditDeSelect(); |
| } |
| void CXFA_FFComboBox::SetItemState(int32_t nIndex, bool bSelected) { |
| if (bSelected) { |