summaryrefslogtreecommitdiff
path: root/fxjs
diff options
context:
space:
mode:
Diffstat (limited to 'fxjs')
-rw-r--r--fxjs/cjx_node.cpp8
-rw-r--r--fxjs/cjx_node.h5
2 files changed, 7 insertions, 6 deletions
diff --git a/fxjs/cjx_node.cpp b/fxjs/cjx_node.cpp
index 64894b7c7e..3fd08772e2 100644
--- a/fxjs/cjx_node.cpp
+++ b/fxjs/cjx_node.cpp
@@ -2732,7 +2732,8 @@ void CJX_Node::Script_Form_Checksum(CFXJSE_Value* pValue,
bool bSetting,
XFA_ATTRIBUTE eAttribute) {
if (bSetting) {
- SetAttribute(XFA_ATTRIBUTE_Checksum, pValue->ToWideString().AsStringView());
+ SetAttribute(XFA_ATTRIBUTE_Checksum, pValue->ToWideString().AsStringView(),
+ false);
return;
}
WideString wsChecksum;
@@ -3440,7 +3441,8 @@ bool CJX_Node::SetScriptContent(const WideString& wsContent,
GetAttribute(XFA_ATTRIBUTE_ContentType, wsContentType, false);
if (wsContentType == L"text/html") {
wsContentType = L"";
- SetAttribute(XFA_ATTRIBUTE_ContentType, wsContentType.AsStringView());
+ SetAttribute(XFA_ATTRIBUTE_ContentType, wsContentType.AsStringView(),
+ false);
}
}
CXFA_Node* pContentRawDataNode =
@@ -3531,7 +3533,7 @@ bool CJX_Node::TryContent(WideString& wsContent,
CXFA_Node* pChildValue = pValue->GetNodeItem(XFA_NODEITEM_FirstChild);
if (pChildValue && XFA_FieldIsMultiListBox(GetXFANode())) {
pChildValue->JSNode()->SetAttribute(XFA_ATTRIBUTE_ContentType,
- L"text/xml");
+ L"text/xml", false);
}
return pChildValue ? pChildValue->JSNode()->TryContent(
wsContent, bScriptModify, bProto)
diff --git a/fxjs/cjx_node.h b/fxjs/cjx_node.h
index 77c564e11b..47fb0d62f0 100644
--- a/fxjs/cjx_node.h
+++ b/fxjs/cjx_node.h
@@ -55,11 +55,10 @@ class CJX_Node : public CJX_Object {
bool HasAttribute(XFA_ATTRIBUTE eAttr);
bool SetAttribute(XFA_ATTRIBUTE eAttr,
const WideStringView& wsValue,
- bool bNotify = false);
-
+ bool bNotify);
bool SetAttribute(const WideStringView& wsAttr,
const WideStringView& wsValue,
- bool bNotify = false);
+ bool bNotify);
bool GetAttribute(const WideStringView& wsAttr,
WideString& wsValue,
bool bUseDefault = true);