diff options
author | dsinclair <dsinclair@chromium.org> | 2016-05-04 14:11:13 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-04 14:11:13 -0700 |
commit | b7675f63684ebff68c688a1c7b160596b6747c3e (patch) | |
tree | b677ff8fd5eb74ad27ffefb97681ffe92e1bb89b /xfa/fwl/basewidget/fwl_editimp.cpp | |
parent | ef43608928148bac9b73f6919188efd87feccf95 (diff) | |
download | pdfium-b7675f63684ebff68c688a1c7b160596b6747c3e.tar.xz |
Cleanup CFWL_ThemePart data.
The m_dwData pointer was being used as a generic way to pass around data. There
were only two places we were reading that data. This Cl changes to have two
specific flags and removes the generic pointer.
Review-Url: https://codereview.chromium.org/1950973003
Diffstat (limited to 'xfa/fwl/basewidget/fwl_editimp.cpp')
-rw-r--r-- | xfa/fwl/basewidget/fwl_editimp.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xfa/fwl/basewidget/fwl_editimp.cpp b/xfa/fwl/basewidget/fwl_editimp.cpp index 8deec9beb2..01557ba2cc 100644 --- a/xfa/fwl/basewidget/fwl_editimp.cpp +++ b/xfa/fwl/basewidget/fwl_editimp.cpp @@ -930,7 +930,7 @@ void CFWL_EditImp::DrawTextBk(CFX_Graphics* pGraphics, CFWL_ThemeBackground param; param.m_pWidget = m_pInterface; param.m_iPart = CFWL_Part::Background; - param.m_dwData = FWL_PARTDATA_EDT_Background; + param.m_bStaticBackground = false; param.m_dwStates = m_pProperties->m_dwStyleExes & FWL_STYLEEXT_EDT_ReadOnly ? CFWL_PartState_ReadOnly : CFWL_PartState_Normal; @@ -951,7 +951,8 @@ void CFWL_EditImp::DrawTextBk(CFX_Graphics* pGraphics, rtStatic.Set(m_rtClient.right() - rtScorll.height, m_rtClient.bottom() - rtScorll.height, rtScorll.height, rtScorll.height); - param.m_dwData = FWL_PARTDATA_EDT_StaticBackground; + param.m_bStaticBackground = true; + param.m_bMaximize = true; param.m_rtPart = rtStatic; pTheme->DrawBackground(¶m); } |