summaryrefslogtreecommitdiff
path: root/fxjs/xfa/cjx_subform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fxjs/xfa/cjx_subform.cpp')
-rw-r--r--fxjs/xfa/cjx_subform.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/fxjs/xfa/cjx_subform.cpp b/fxjs/xfa/cjx_subform.cpp
index 52f08655ca..042bd85119 100644
--- a/fxjs/xfa/cjx_subform.cpp
+++ b/fxjs/xfa/cjx_subform.cpp
@@ -36,7 +36,7 @@ CJS_Return CJX_Subform::execEvent(
execSingleEventByName(runtime->ToWideString(params[0]).AsStringView(),
XFA_Element::Subform);
- return CJS_Return(true);
+ return CJS_Return();
}
CJS_Return CJX_Subform::execInitialize(
@@ -49,7 +49,7 @@ CJS_Return CJX_Subform::execInitialize(
if (pNotify)
pNotify->ExecEventByDeepFirst(GetXFANode(), XFA_EVENT_Initialize, false,
true);
- return CJS_Return(true);
+ return CJS_Return();
}
CJS_Return CJX_Subform::execCalculate(
@@ -62,7 +62,7 @@ CJS_Return CJX_Subform::execCalculate(
if (pNotify)
pNotify->ExecEventByDeepFirst(GetXFANode(), XFA_EVENT_Calculate, false,
true);
- return CJS_Return(true);
+ return CJS_Return();
}
CJS_Return CJX_Subform::execValidate(