diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_ref.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_ref.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_ref.cpp b/xfa/fxfa/parser/cxfa_ref.cpp index 51bea82254..eea1292483 100644 --- a/xfa/fxfa/parser/cxfa_ref.cpp +++ b/xfa/fxfa/parser/cxfa_ref.cpp @@ -6,6 +6,9 @@ #include "xfa/fxfa/parser/cxfa_ref.h" +#include "fxjs/xfa/cjx_textnode.h" +#include "third_party/base/ptr_util.h" + namespace { const CXFA_Node::AttributeData kAttributeData[] = { @@ -26,6 +29,7 @@ CXFA_Ref::CXFA_Ref(CXFA_Document* doc, XFA_PacketType packet) XFA_Element::Ref, nullptr, kAttributeData, - kName) {} + kName, + pdfium::MakeUnique<CJX_TextNode>(this)) {} CXFA_Ref::~CXFA_Ref() {} |