diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-08-15 09:43:07 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-15 15:00:00 +0000 |
commit | 171cb27a720036c48ae3a6176084e880742af0a9 (patch) | |
tree | 8f4d2f9b2db6cc233b835d1ef24f7d71c723f05c /xfa/fde/cfde_txtedtpage.h | |
parent | 73b492a5d775c05d8c186c8478d1003edfffd34c (diff) | |
download | pdfium-171cb27a720036c48ae3a6176084e880742af0a9.tar.xz |
Remove default params from xfa/fde code.
This CL removes the default params from methods in xfa/fde.
Change-Id: Ide93a51430c62753656b9e9c0bcd842d8179aa3c
Reviewed-on: https://pdfium-review.googlesource.com/10952
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fde/cfde_txtedtpage.h')
-rw-r--r-- | xfa/fde/cfde_txtedtpage.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xfa/fde/cfde_txtedtpage.h b/xfa/fde/cfde_txtedtpage.h index c118fe2fee..e635ac726a 100644 --- a/xfa/fde/cfde_txtedtpage.h +++ b/xfa/fde/cfde_txtedtpage.h @@ -43,9 +43,7 @@ class CFDE_TxtEdtPage { CFX_RectF GetRect(const FDE_TEXTEDITPIECE& pPiece); CFDE_TxtEdtEngine* GetEngine() const; - int32_t GetCharRect(int32_t nIndex, - CFX_RectF& rect, - bool bBBox = false) const; + int32_t GetCharRect(int32_t nIndex, CFX_RectF& rect, bool bBBox) const; int32_t GetCharIndex(const CFX_PointF& fPoint, bool& bBefore); void CalcRangeRectArray(int32_t nStart, int32_t nCount, |