diff options
Diffstat (limited to 'xfa/fxfa/parser/cscript_logpseudomodel.cpp')
-rw-r--r-- | xfa/fxfa/parser/cscript_logpseudomodel.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cscript_logpseudomodel.cpp b/xfa/fxfa/parser/cscript_logpseudomodel.cpp index f0747f4a12..2c99972042 100644 --- a/xfa/fxfa/parser/cscript_logpseudomodel.cpp +++ b/xfa/fxfa/parser/cscript_logpseudomodel.cpp @@ -7,6 +7,8 @@ #include "xfa/fxfa/parser/cscript_logpseudomodel.h" #include "fxjs/cfxjse_arguments.h" +#include "fxjs/cjx_object.h" +#include "third_party/base/ptr_util.h" #include "xfa/fxfa/parser/cxfa_document.h" #include "xfa/fxfa/parser/cxfa_localemgr.h" #include "xfa/fxfa/parser/xfa_utils.h" @@ -15,7 +17,8 @@ CScript_LogPseudoModel::CScript_LogPseudoModel(CXFA_Document* pDocument) : CXFA_Object(pDocument, XFA_ObjectType::Object, XFA_Element::LogPseudoModel, - WideStringView(L"logPseudoModel")) {} + WideStringView(L"logPseudoModel"), + pdfium::MakeUnique<CJX_Object>(this)) {} CScript_LogPseudoModel::~CScript_LogPseudoModel() {} |