diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-02-04 09:32:11 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-02-04 09:32:11 -0800 |
commit | 99f20ebb09f515a6e3798b948fe66760383c9304 (patch) | |
tree | 8690b7c7b1e541e37362717232f696fa9719e78c /xfa/src/fxfa/src/app/xfa_ffwidgetacc.cpp | |
parent | 486615821300724aef55035f4f831f548fb9cab6 (diff) | |
download | pdfium-99f20ebb09f515a6e3798b948fe66760383c9304.tar.xz |
Call CXFA_Object::ToNode() rather than C-style casting.
The static_casts<> are places where void* pointers are converted.
Fix these in a subsequent CL by using a properly typed container.
The const_casts<> are places where functions are missing "consts".
Fix these in a subsequent CL, too.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1668003003 .
Diffstat (limited to 'xfa/src/fxfa/src/app/xfa_ffwidgetacc.cpp')
-rw-r--r-- | xfa/src/fxfa/src/app/xfa_ffwidgetacc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/src/fxfa/src/app/xfa_ffwidgetacc.cpp b/xfa/src/fxfa/src/app/xfa_ffwidgetacc.cpp index 05ffefdf5d..81bfa53dc3 100644 --- a/xfa/src/fxfa/src/app/xfa_ffwidgetacc.cpp +++ b/xfa/src/fxfa/src/app/xfa_ffwidgetacc.cpp @@ -1701,7 +1701,7 @@ FX_BOOL CXFA_TextProvider::GetEmbbedObj(FX_BOOL bURI, } if (!pIDNode) { pIDNode = pDocument->GetNodeByID( - (CXFA_Node*)pDocument->GetXFAObject(XFA_HASHCODE_Form), wsAttr); + ToNode(pDocument->GetXFAObject(XFA_HASHCODE_Form)), wsAttr); } if (pIDNode) { pEmbAcc = (CXFA_WidgetAcc*)pIDNode->GetWidgetData(); |