diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-03-20 16:50:26 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-21 17:43:09 +0000 |
commit | 9c045de6cf02f7dbd0634af566396ba9352b2830 (patch) | |
tree | f6a8f1491ab1198e20fe2409a307278f94f9a344 /xfa/fde/tto/fde_textout.h | |
parent | 5c529e6318d46121a5ea38d3edb42c8d9f580fe8 (diff) | |
download | pdfium-9c045de6cf02f7dbd0634af566396ba9352b2830.tar.xz |
Use std::vector for m_HotKeys
Change-Id: I637fe236ae351bf6fcf8aa2913b94f55d997c612
Reviewed-on: https://pdfium-review.googlesource.com/3132
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fde/tto/fde_textout.h')
-rw-r--r-- | xfa/fde/tto/fde_textout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fde/tto/fde_textout.h b/xfa/fde/tto/fde_textout.h index bbc796d7ac..6883a5701f 100644 --- a/xfa/fde/tto/fde_textout.h +++ b/xfa/fde/tto/fde_textout.h @@ -168,7 +168,7 @@ class CFDE_TextOut { int32_t m_iTotalLines; std::vector<FXTEXT_CHARPOS> m_CharPos; std::unique_ptr<CFDE_RenderDevice> m_pRenderDevice; - CFX_ArrayTemplate<int32_t> m_hotKeys; + std::vector<int32_t> m_HotKeys; std::vector<CFX_RectF> m_rectArray; }; |