From ca27127240fbca2184f1c576b15b5212d5b314e6 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Wed, 3 Aug 2016 10:48:00 -0700 Subject: Fixup class name spelling Fix CXFA_FMIdentifierExpressionn to remove the duplicate n. Review-Url: https://codereview.chromium.org/2210543002 --- xfa/fxfa/fm2js/xfa_fmparse.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xfa/fxfa/fm2js/xfa_fmparse.cpp') diff --git a/xfa/fxfa/fm2js/xfa_fmparse.cpp b/xfa/fxfa/fm2js/xfa_fmparse.cpp index bc7b91b4e6..5c17bbc723 100644 --- a/xfa/fxfa/fm2js/xfa_fmparse.cpp +++ b/xfa/fxfa/fm2js/xfa_fmparse.cpp @@ -519,11 +519,11 @@ CXFA_FMSimpleExpression* CXFA_FMParse::ParsePrimaryExpression() { } NextToken(); } else { - e.reset(new CXFA_FMIdentifierExpressionn(line, wsIdentifier)); + e.reset(new CXFA_FMIdentifierExpression(line, wsIdentifier)); } } break; case TOKif: - e.reset(new CXFA_FMIdentifierExpressionn(line, m_pToken->m_wstring)); + e.reset(new CXFA_FMIdentifierExpression(line, m_pToken->m_wstring)); NextToken(); break; case TOKnull: @@ -627,7 +627,7 @@ CXFA_FMSimpleExpression* CXFA_FMParse::ParsePostExpression( } if (m_pErrorInfo->message.IsEmpty()) { CXFA_FMSimpleExpression* pIdentifier = - new CXFA_FMIdentifierExpressionn(tempLine, tempStr); + new CXFA_FMIdentifierExpression(tempLine, tempStr); pExpCall = new CXFA_FMCallExpression(line, pIdentifier, pArray.release(), TRUE); e = new CXFA_FMMethodCallExpression(line, pExpAccessor, pExpCall); -- cgit v1.2.3