| Index: xfa/fxfa/fm2js/xfa_simpleexpression.cpp
|
| diff --git a/xfa/fxfa/fm2js/xfa_simpleexpression.cpp b/xfa/fxfa/fm2js/xfa_simpleexpression.cpp
|
| index a7a88ec30aa70d0d22d68c6a7470a7c7e5946a16..089333b77445a46c9f6c68a905296666c7dd1489 100644
|
| --- a/xfa/fxfa/fm2js/xfa_simpleexpression.cpp
|
| +++ b/xfa/fxfa/fm2js/xfa_simpleexpression.cpp
|
| @@ -175,15 +175,15 @@ void CXFA_FMStringExpression::ToJavaScript(CFX_WideTextBuf& javascript) {
|
| }
|
| }
|
|
|
| -CXFA_FMIdentifierExpressionn::CXFA_FMIdentifierExpressionn(
|
| +CXFA_FMIdentifierExpression::CXFA_FMIdentifierExpression(
|
| uint32_t line,
|
| CFX_WideStringC wsIdentifier)
|
| : CXFA_FMSimpleExpression(line, TOKidentifier),
|
| m_wsIdentifier(wsIdentifier) {}
|
|
|
| -CXFA_FMIdentifierExpressionn::~CXFA_FMIdentifierExpressionn() {}
|
| +CXFA_FMIdentifierExpression::~CXFA_FMIdentifierExpression() {}
|
|
|
| -void CXFA_FMIdentifierExpressionn::ToJavaScript(CFX_WideTextBuf& javascript) {
|
| +void CXFA_FMIdentifierExpression::ToJavaScript(CFX_WideTextBuf& javascript) {
|
| CFX_WideString tempStr(m_wsIdentifier);
|
| if (tempStr == FX_WSTRC(L"$")) {
|
| tempStr = FX_WSTRC(L"this");
|
|
|