summaryrefslogtreecommitdiff
path: root/fxjs
diff options
context:
space:
mode:
Diffstat (limited to 'fxjs')
-rw-r--r--fxjs/cfxjse_engine.h2
-rw-r--r--fxjs/cfxjse_resolveprocessor.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/fxjs/cfxjse_engine.h b/fxjs/cfxjse_engine.h
index a766e268a4..183074d70a 100644
--- a/fxjs/cfxjse_engine.h
+++ b/fxjs/cfxjse_engine.h
@@ -118,7 +118,7 @@ class CFXJSE_Engine final : public CFX_V8 {
// CacheList holds the List items so we can clean them up when we're done.
std::vector<std::unique_ptr<CXFA_List>> m_CacheList;
UnownedPtr<std::vector<CXFA_Node*>> m_pScriptNodeArray;
- const std::unique_ptr<CFXJSE_ResolveProcessor> m_ResolveProcessor;
+ std::unique_ptr<CFXJSE_ResolveProcessor> const m_ResolveProcessor;
std::unique_ptr<CFXJSE_FormCalcContext> m_FM2JSContext;
UnownedPtr<CXFA_Object> m_pThisObject;
XFA_AttributeEnum m_eRunAtType = XFA_AttributeEnum::Client;
diff --git a/fxjs/cfxjse_resolveprocessor.h b/fxjs/cfxjse_resolveprocessor.h
index dea7abdc5b..2a98bc9b2a 100644
--- a/fxjs/cfxjse_resolveprocessor.h
+++ b/fxjs/cfxjse_resolveprocessor.h
@@ -71,7 +71,7 @@ class CFXJSE_ResolveProcessor {
void FilterCondition(CFXJSE_ResolveNodeData& rnd, WideString wsCondition);
int32_t m_iCurStart = 0;
- const std::unique_ptr<CXFA_NodeHelper> m_pNodeHelper;
+ std::unique_ptr<CXFA_NodeHelper> const m_pNodeHelper;
};
#endif // FXJS_CFXJSE_RESOLVEPROCESSOR_H_