diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-05-02 20:47:20 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-02 20:47:20 +0000 |
commit | fceaf42fb5930070415703e448ecce39e9dc0522 (patch) | |
tree | 7ba4fda605a4093ce3a9e1f3e06e38feeca5bfc2 /xfa/fxfa/parser/cxfa_box.h | |
parent | 20c62003660cc7bf7ab28a5e638556e22d5a525b (diff) | |
download | pdfium-fceaf42fb5930070415703e448ecce39e9dc0522.tar.xz |
Use pointer instead of ref for CXFA_Box::GetPathArcOrRounded param.
Change-Id: I1bfada610b8bf2e1f8e0f79a9421db9ebedc7311
Reviewed-on: https://pdfium-review.googlesource.com/32010
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_box.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_box.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/cxfa_box.h b/xfa/fxfa/parser/cxfa_box.h index 0831cd603e..5431ef8fc8 100644 --- a/xfa/fxfa/parser/cxfa_box.h +++ b/xfa/fxfa/parser/cxfa_box.h @@ -68,8 +68,8 @@ class CXFA_Box : public CXFA_Node { const CFX_Matrix& matrix, bool forceRound); void GetPathArcOrRounded(CFX_RectF rtDraw, - CXFA_GEPath& fillPath, - bool forceRound); + bool forceRound, + CXFA_GEPath* fillPath); }; #endif // XFA_FXFA_PARSER_CXFA_BOX_H_ |