diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-07-03 19:12:34 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-03 19:12:34 +0000 |
commit | 95b0293a29b235c746db0f01c8462ca89d7a814e (patch) | |
tree | ed5e19f83b4e5d0e90bac2c0764175a8ed7a5b8f /xfa/fgas/layout/cfx_txtbreak.cpp | |
parent | d96fa3b42797332ab53c05b8e6b6357676838e55 (diff) | |
download | pdfium-95b0293a29b235c746db0f01c8462ca89d7a814e.tar.xz |
Use more UnowendPtr<> in cfgas_formatstring.h and cfx_break.h
Move initializers to .h file (proves none missing).
Change-Id: Iff8fe76e46634aa32a32ecd592476594a9d1bafa
Reviewed-on: https://pdfium-review.googlesource.com/36950
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fgas/layout/cfx_txtbreak.cpp')
-rw-r--r-- | xfa/fgas/layout/cfx_txtbreak.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fgas/layout/cfx_txtbreak.cpp b/xfa/fgas/layout/cfx_txtbreak.cpp index 7633c4c91e..490426a221 100644 --- a/xfa/fgas/layout/cfx_txtbreak.cpp +++ b/xfa/fgas/layout/cfx_txtbreak.cpp @@ -293,7 +293,7 @@ bool CFX_TxtBreak::EndBreak_SplitLine(CFX_BreakLine* pNextLine, case FX_CHARTYPE_Space: break; default: - SplitTextLine(m_pCurLine, pNextLine, bAllChars); + SplitTextLine(m_pCurLine.Get(), pNextLine, bAllChars); bDone = true; break; } |