diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-07-03 17:18:35 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-03 17:18:35 +0000 |
commit | 931a6b9c253f161f8016064eee601cd238ed246f (patch) | |
tree | a34858792d190b86502379698f8c1344bb13a208 /xfa/fwl/theme/cfwl_pushbuttontp.cpp | |
parent | bc7e310b027809562eb589bfef72737c193ee27a (diff) | |
download | pdfium-931a6b9c253f161f8016064eee601cd238ed246f.tar.xz |
Use UnownedPtr<> in cfwl_scrollbar.h and cfwl_themebackground.h
Change-Id: Ib65197a9cd9de173de8e77db168dcfbb43669022
Reviewed-on: https://pdfium-review.googlesource.com/36911
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fwl/theme/cfwl_pushbuttontp.cpp')
-rw-r--r-- | xfa/fwl/theme/cfwl_pushbuttontp.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xfa/fwl/theme/cfwl_pushbuttontp.cpp b/xfa/fwl/theme/cfwl_pushbuttontp.cpp index c3eef0f11f..dbd6800ba2 100644 --- a/xfa/fwl/theme/cfwl_pushbuttontp.cpp +++ b/xfa/fwl/theme/cfwl_pushbuttontp.cpp @@ -24,7 +24,8 @@ CFWL_PushButtonTP::~CFWL_PushButtonTP() {} void CFWL_PushButtonTP::DrawBackground(CFWL_ThemeBackground* pParams) { switch (pParams->m_iPart) { case CFWL_Part::Border: { - DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix); + DrawBorder(pParams->m_pGraphics.Get(), &pParams->m_rtPart, + &pParams->m_matrix); break; } case CFWL_Part::Background: { @@ -51,7 +52,7 @@ void CFWL_PushButtonTP::DrawBackground(CFWL_ThemeBackground* pParams) { CXFA_GEPath fillPath; fillPath.AddSubpath(&strokePath); - CXFA_Graphics* pGraphics = pParams->m_pGraphics; + CXFA_Graphics* pGraphics = pParams->m_pGraphics.Get(); pGraphics->SaveGraphState(); CFX_RectF rtInner(rect); |