diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-08-16 16:36:31 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-16 21:39:28 +0000 |
commit | a364729be3725adbc9689c1c8c23902df102243b (patch) | |
tree | 4d97b4e0a50145996f5b7b487a48c499e67eff82 /xfa/fde/cfde_txtedttextset.h | |
parent | a016857bcee1a09e67bd34e895ef639a3946fa91 (diff) | |
download | pdfium-a364729be3725adbc9689c1c8c23902df102243b.tar.xz |
Move some CFDE_TxtEdt* methods to the headerschromium/3188
This CL moves several methods from the CFDE_TxtEdt* classes from the
.cpp to .h files. As well, the GetCaretRect method is updated to return
the rect instead of using an out param.
Change-Id: I1288701f47d9ac1c413fbf06627f20b295b18b86
Reviewed-on: https://pdfium-review.googlesource.com/11270
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'xfa/fde/cfde_txtedttextset.h')
-rw-r--r-- | xfa/fde/cfde_txtedttextset.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xfa/fde/cfde_txtedttextset.h b/xfa/fde/cfde_txtedttextset.h index 40c5623382..afaf22a719 100644 --- a/xfa/fde/cfde_txtedttextset.h +++ b/xfa/fde/cfde_txtedttextset.h @@ -18,7 +18,9 @@ class CFDE_TxtEdtTextSet { explicit CFDE_TxtEdtTextSet(CFDE_TxtEdtPage* pPage); ~CFDE_TxtEdtTextSet(); - CFX_RectF GetRect(const FDE_TEXTEDITPIECE& hVisualObj) const; + CFX_RectF GetRect(const FDE_TEXTEDITPIECE& pPiece) const { + return pPiece.rtPiece; + } int32_t GetString(FDE_TEXTEDITPIECE* pPiece, CFX_WideString& wsText) const; CFX_RetainPtr<CFGAS_GEFont> GetFont() const; float GetFontSize() const; |