diff options
author | Lei Zhang <thestig@chromium.org> | 2017-07-27 13:47:27 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-07-27 23:20:44 +0000 |
commit | 672a1721620c3f4e62fe6adfaceb929d423ae31f (patch) | |
tree | cd9e07848dc9a99e48a9276324c2dbcb655e4ffc /xfa | |
parent | 3f7ff0540e7913ddc2c2d4f60e144cc0c7700e9e (diff) | |
download | pdfium-672a1721620c3f4e62fe6adfaceb929d423ae31f.tar.xz |
Simplify FX_GetMirrorChar() code.
Change-Id: I43ec0d4a3b60d51c59ba5a540dfe24803e725089
Reviewed-on: https://pdfium-review.googlesource.com/9170
Reviewed-by: Nicolás Peña <npm@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa')
-rw-r--r-- | xfa/fgas/layout/cfx_rtfbreak.cpp | 2 | ||||
-rw-r--r-- | xfa/fgas/layout/cfx_txtbreak.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fgas/layout/cfx_rtfbreak.cpp b/xfa/fgas/layout/cfx_rtfbreak.cpp index 3bc8860ab8..fdb492d44b 100644 --- a/xfa/fgas/layout/cfx_rtfbreak.cpp +++ b/xfa/fgas/layout/cfx_rtfbreak.cpp @@ -722,7 +722,7 @@ int32_t CFX_RTFBreak::GetDisplayPos(const FX_RTFTEXTOBJ* pText, } wForm = pdfium::arabic::GetFormChar(wch, wPrev, wNext); } else if (bRTLPiece) { - wForm = FX_GetMirrorChar(wch, dwProps, bRTLPiece, false); + wForm = FX_GetMirrorChar(wch, dwProps); } dwProps = FX_GetUnicodeProperties(wForm); diff --git a/xfa/fgas/layout/cfx_txtbreak.cpp b/xfa/fgas/layout/cfx_txtbreak.cpp index e898a22991..37e261bbed 100644 --- a/xfa/fgas/layout/cfx_txtbreak.cpp +++ b/xfa/fgas/layout/cfx_txtbreak.cpp @@ -793,7 +793,7 @@ int32_t CFX_TxtBreak::GetDisplayPos(const FX_TXTRUN* pTxtRun, } else if (wch == L',') { wForm = wch; } else if (bRTLPiece) { - wForm = FX_GetMirrorChar(wch, dwProps, bRTLPiece, false); + wForm = FX_GetMirrorChar(wch, dwProps); } else { wForm = wch; } |