diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-03-27 12:44:20 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-27 20:00:37 +0000 |
commit | 5c500acc3380d96db0ab5e2e6c2bc448644992de (patch) | |
tree | 6d901f2a357095e00965165f94a0e1769f62d326 /xfa/fxfa/app/xfa_ffchoicelist.h | |
parent | d59442b054072dabfcd5c9cb766e7b60c13a1e69 (diff) | |
download | pdfium-5c500acc3380d96db0ab5e2e6c2bc448644992de.tar.xz |
Return arrays where appropriate in fxfa.
Also, remove some default method arguments along the way.
Change-Id: Ifbd157499881ed6a3777f3903dd7f0193753cf59
Reviewed-on: https://pdfium-review.googlesource.com/3219
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/app/xfa_ffchoicelist.h')
-rw-r--r-- | xfa/fxfa/app/xfa_ffchoicelist.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xfa/fxfa/app/xfa_ffchoicelist.h b/xfa/fxfa/app/xfa_ffchoicelist.h index b25d1862d4..8875655901 100644 --- a/xfa/fxfa/app/xfa_ffchoicelist.h +++ b/xfa/fxfa/app/xfa_ffchoicelist.h @@ -7,6 +7,8 @@ #ifndef XFA_FXFA_APP_XFA_FFCHOICELIST_H_ #define XFA_FXFA_APP_XFA_FFCHOICELIST_H_ +#include <vector> + #include "xfa/fxfa/app/xfa_fffield.h" #include "xfa/fxfa/cxfa_ffpageview.h" @@ -24,7 +26,7 @@ class CXFA_FFListBox : public CXFA_FFField { const CFX_Matrix* pMatrix = nullptr) override; void OnSelectChanged(CFWL_Widget* pWidget, - const CFX_ArrayTemplate<int32_t>& arrSels); + const std::vector<int32_t>& arrSels); void SetItemState(int32_t nIndex, bool bSelected); void InsertItem(const CFX_WideStringC& wsLabel, int32_t nIndex = -1); void DeleteItem(int32_t nIndex); |