diff options
Diffstat (limited to 'fxjs/cfxjse_engine.cpp')
-rw-r--r-- | fxjs/cfxjse_engine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fxjs/cfxjse_engine.cpp b/fxjs/cfxjse_engine.cpp index dd907271eb..3efe335d67 100644 --- a/fxjs/cfxjse_engine.cpp +++ b/fxjs/cfxjse_engine.cpp @@ -65,8 +65,8 @@ namespace { const char kFormCalcRuntime[] = "pfm_rt"; -CXFA_ThisProxy* ToThisProxy(CFXJSE_Value* pValue, CFXJSE_Class* pClass) { - return static_cast<CXFA_ThisProxy*>(pValue->ToHostObject(pClass)); +CXFA_ThisProxy* ToThisProxy(CFXJSE_Value* pValue) { + return static_cast<CXFA_ThisProxy*>(pValue->ToHostObject()); } } // namespace @@ -84,7 +84,7 @@ CXFA_Object* CFXJSE_Engine::ToObject( // static. CXFA_Object* CFXJSE_Engine::ToObject(CFXJSE_Value* pValue) { - CFXJSE_HostObject* pHostObj = pValue->ToHostObject(nullptr); + CFXJSE_HostObject* pHostObj = pValue->ToHostObject(); return pHostObj ? pHostObj->AsCXFAObject() : nullptr; } @@ -113,7 +113,7 @@ CFXJSE_Engine::CFXJSE_Engine(CXFA_Document* pDocument, CFXJSE_Engine::~CFXJSE_Engine() { for (const auto& pair : m_mapVariableToContext) - delete ToThisProxy(pair.second->GetGlobalObject().get(), nullptr); + delete ToThisProxy(pair.second->GetGlobalObject().get()); } bool CFXJSE_Engine::RunScript(CXFA_Script::Type eScriptType, |