diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-03-24 14:19:11 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-27 13:54:28 +0000 |
commit | fcc309e618fea8b61a2757e2f75aac4233020013 (patch) | |
tree | a5b46b311a8cf131b7a6ef90de8de775b2c789c5 /xfa/fxfa/app/xfa_fftext.cpp | |
parent | 90d80f81e988ba7e6f0dbf78220b5b7cd31a527b (diff) | |
download | pdfium-fcc309e618fea8b61a2757e2f75aac4233020013.tar.xz |
Use std::vector in fxfa/app.
Change-Id: I83fed055cb92ccff85829d7aea7a9624b8f07456
Reviewed-on: https://pdfium-review.googlesource.com/3218
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/app/xfa_fftext.cpp')
-rw-r--r-- | xfa/fxfa/app/xfa_fftext.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xfa/fxfa/app/xfa_fftext.cpp b/xfa/fxfa/app/xfa_fftext.cpp index a314803f31..6885bfc93f 100644 --- a/xfa/fxfa/app/xfa_fftext.cpp +++ b/xfa/fxfa/app/xfa_fftext.cpp @@ -75,13 +75,13 @@ bool CXFA_FFText::IsLoaded() { bool CXFA_FFText::PerformLayout() { CXFA_FFDraw::PerformLayout(); CXFA_TextLayout* pTextLayout = m_pDataAcc->GetTextLayout(); - if (!pTextLayout) { + if (!pTextLayout) return false; - } - if (!pTextLayout->m_bHasBlock) { + + if (!pTextLayout->m_bHasBlock) return true; - } - pTextLayout->m_Blocks.RemoveAll(); + + pTextLayout->m_Blocks.clear(); CXFA_LayoutItem* pItem = this; if (!pItem->GetPrev() && !pItem->GetNext()) { return true; |