diff options
Diffstat (limited to 'fxjs/xfa/cjx_boolean.cpp')
-rw-r--r-- | fxjs/xfa/cjx_boolean.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fxjs/xfa/cjx_boolean.cpp b/fxjs/xfa/cjx_boolean.cpp index 6abcd3c8bd..7ca3889ee6 100644 --- a/fxjs/xfa/cjx_boolean.cpp +++ b/fxjs/xfa/cjx_boolean.cpp @@ -36,10 +36,8 @@ void CJX_Boolean::defaultValue(CFXJSE_Value* pValue, WideString wsNewValue(iValue == 0 ? L"0" : L"1"); WideString wsFormatValue(wsNewValue); CXFA_Node* pContainerNode = ToNode(GetXFAObject())->GetContainerNode(); - if (pContainerNode && pContainerNode->GetWidgetAcc()) { - wsFormatValue = - pContainerNode->GetWidgetAcc()->GetFormatDataValue(wsNewValue); - } + if (pContainerNode) + wsFormatValue = pContainerNode->GetFormatDataValue(wsNewValue); SetContent(wsNewValue, wsFormatValue, true, true, true); } |