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/cxfa_texttabstopscontext.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/cxfa_texttabstopscontext.h')
-rw-r--r-- | xfa/fxfa/app/cxfa_texttabstopscontext.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/xfa/fxfa/app/cxfa_texttabstopscontext.h b/xfa/fxfa/app/cxfa_texttabstopscontext.h index 64b83a4421..9be10dd61d 100644 --- a/xfa/fxfa/app/cxfa_texttabstopscontext.h +++ b/xfa/fxfa/app/cxfa_texttabstopscontext.h @@ -7,11 +7,17 @@ #ifndef XFA_FXFA_APP_CXFA_TEXTTABSTOPSCONTEXT_H_ #define XFA_FXFA_APP_CXFA_TEXTTABSTOPSCONTEXT_H_ +#include <vector> + #include "core/fxcrt/fx_basic.h" struct XFA_TABSTOPS { uint32_t dwAlign; float fTabstops; + + bool operator<(const XFA_TABSTOPS& that) const { + return fTabstops < that.fTabstops; + } }; class CXFA_TextTabstopsContext { @@ -23,12 +29,11 @@ class CXFA_TextTabstopsContext { void RemoveAll(); void Reset(); - CFX_ArrayTemplate<XFA_TABSTOPS> m_tabstops; - int32_t m_iTabCount; int32_t m_iTabIndex; bool m_bTabstops; float m_fTabWidth; float m_fLeft; + std::vector<XFA_TABSTOPS> m_tabstops; }; #endif // XFA_FXFA_APP_CXFA_TEXTTABSTOPSCONTEXT_H_ |