diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-09-21 11:40:11 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-09-21 19:31:40 +0000 |
commit | 3418f710f923785a0fd05f7c556d09bc9a8d3447 (patch) | |
tree | df125a64fb73ff52e2ccdfb053abe096881b0bb8 /xfa/fwl/cfwl_widgetmgr.cpp | |
parent | a44a48043e54eac6126c9a2cfae9e6055ef4a15f (diff) | |
download | pdfium-3418f710f923785a0fd05f7c556d09bc9a8d3447.tar.xz |
Rename CXFA_FFApp::GetWidgetMgr to make it clear the typechromium/3222
The CXFA_FFApp::GetWidgetMgr has two return types. This CL renames the
methods to make it clear which one is being used.
Change-Id: Id4fdaa33c1e6079afd2f0f7dcc77ae46f1c07ac2
Reviewed-on: https://pdfium-review.googlesource.com/14610
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fwl/cfwl_widgetmgr.cpp')
-rw-r--r-- | xfa/fwl/cfwl_widgetmgr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/fwl/cfwl_widgetmgr.cpp b/xfa/fwl/cfwl_widgetmgr.cpp index d3f2dd4655..4f697361c5 100644 --- a/xfa/fwl/cfwl_widgetmgr.cpp +++ b/xfa/fwl/cfwl_widgetmgr.cpp @@ -29,7 +29,8 @@ struct FWL_NEEDREPAINTHITDATA { } // namespace CFWL_WidgetMgr::CFWL_WidgetMgr(CXFA_FFApp* pAdapterNative) - : m_dwCapability(0), m_pAdapter(pAdapterNative->GetWidgetMgr(this)) { + : m_dwCapability(0), + m_pAdapter(pAdapterNative->GetFWLAdapterWidgetMgr(this)) { ASSERT(m_pAdapter); m_mapWidgetItem[nullptr] = pdfium::MakeUnique<Item>(); #if (_FX_OS_ == _FX_WIN32_DESKTOP_) || (_FX_OS_ == _FX_WIN64_) |