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 51d693fa35d15ecf92ed70560e4113e4eb8d7042..4258eef29b72a2b381572ded638750eae53b0390 100644 |
| --- a/xfa/fxfa/app/xfa_ffchoicelist.cpp |
| +++ b/xfa/fxfa/app/xfa_ffchoicelist.cpp |
| @@ -91,7 +91,7 @@ FX_BOOL CXFA_FFListBox::IsDataChanged() { |
| for (int32_t i = 0; i < iSels; ++i) { |
| IFWL_ListItem* hlistItem = pListBox->GetItem(iSelArray[i]); |
| - if (!(pListBox->GetItemStates(hlistItem) && FWL_ITEMSTATE_LTB_Selected)) |
| + if (!(pListBox->GetItemStates(hlistItem) & FWL_ITEMSTATE_LTB_Selected)) |
|
Tom Sepez
2016/06/03 18:54:37
Note: this was probably a real bug.
|
| return TRUE; |
| } |
| return FALSE; |