diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-05-01 21:00:44 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-01 21:00:44 +0000 |
commit | 0b0b0b32bc2b03f09b7156b855c626a44703f9c4 (patch) | |
tree | 411225574a545e49ae4d883082be6a013460b7c6 /xfa/fxfa/cxfa_fwltheme.h | |
parent | 9294ffdf371fbae8c166dd5e3c63955f1d3ab18e (diff) | |
download | pdfium-0b0b0b32bc2b03f09b7156b855c626a44703f9c4.tar.xz |
Transform rect out param from reference to pointer in XFA code.
Change-Id: Ib5f8b8754bca8198d9122700d7d876b45d1428da
Reviewed-on: https://pdfium-review.googlesource.com/31852
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_fwltheme.h')
-rw-r--r-- | xfa/fxfa/cxfa_fwltheme.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/cxfa_fwltheme.h b/xfa/fxfa/cxfa_fwltheme.h index b8f8ff68be..289bbd4fe5 100644 --- a/xfa/fxfa/cxfa_fwltheme.h +++ b/xfa/fxfa/cxfa_fwltheme.h @@ -34,7 +34,7 @@ class CXFA_FWLTheme final : public IFWL_ThemeProvider { // IFWL_ThemeProvider: void DrawBackground(CFWL_ThemeBackground* pParams) override; void DrawText(CFWL_ThemeText* pParams) override; - void CalcTextRect(CFWL_ThemeText* pParams, CFX_RectF& rect) override; + void CalcTextRect(CFWL_ThemeText* pParams, CFX_RectF* pRect) override; float GetCXBorderSize() const override; float GetCYBorderSize() const override; CFX_RectF GetUIMargin(CFWL_ThemePart* pThemePart) const override; |