diff options
author | tsepez <tsepez@chromium.org> | 2016-12-08 10:55:57 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-12-08 10:55:57 -0800 |
commit | 51709bea3ce113df7d36a5fe6415036e26fc3236 (patch) | |
tree | ff2cc5da9de834bda8cbc5c92d45c9a5c00b21c3 /xfa/fxfa/xfa_ffdocview.h | |
parent | 447b1f3ffc7e0df233d15300bbf8a85ce2bc7278 (diff) | |
download | pdfium-51709bea3ce113df7d36a5fe6415036e26fc3236.tar.xz |
Replace CFX_WideStringArray with std::vector
Minimalist changes with the tidying of the code to
use better loop iterators as a follow-up.
Review-Url: https://codereview.chromium.org/2556963004
Diffstat (limited to 'xfa/fxfa/xfa_ffdocview.h')
-rw-r--r-- | xfa/fxfa/xfa_ffdocview.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/fxfa/xfa_ffdocview.h b/xfa/fxfa/xfa_ffdocview.h index 2350978d52..2c84de7700 100644 --- a/xfa/fxfa/xfa_ffdocview.h +++ b/xfa/fxfa/xfa_ffdocview.h @@ -9,6 +9,7 @@ #include <map> #include <memory> +#include <vector> #include "xfa/fxfa/cxfa_eventparam.h" #include "xfa/fxfa/xfa_ffdoc.h" @@ -98,7 +99,7 @@ class CXFA_FFDocView { bool bRecursive, CXFA_Node* pExclude); bool m_bLayoutEvent; - CFX_WideStringArray m_arrNullTestMsg; + std::vector<CFX_WideString> m_arrNullTestMsg; CXFA_FFWidget* m_pListFocusWidget; bool m_bInLayoutStatus; |