diff options
author | dsinclair <dsinclair@chromium.org> | 2016-08-03 10:48:00 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-03 10:48:01 -0700 |
commit | ca27127240fbca2184f1c576b15b5212d5b314e6 (patch) | |
tree | 2f1377d9105b1992f6562991af2b99ba3565de95 /xfa/fxfa/fm2js/xfa_simpleexpression.cpp | |
parent | 6ea5ba035a396bf0956b4b4ab3a5b3ee33b6c546 (diff) | |
download | pdfium-ca27127240fbca2184f1c576b15b5212d5b314e6.tar.xz |
Fixup class name spelling
Fix CXFA_FMIdentifierExpressionn to remove the duplicate n.
Review-Url: https://codereview.chromium.org/2210543002
Diffstat (limited to 'xfa/fxfa/fm2js/xfa_simpleexpression.cpp')
-rw-r--r-- | xfa/fxfa/fm2js/xfa_simpleexpression.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/fm2js/xfa_simpleexpression.cpp b/xfa/fxfa/fm2js/xfa_simpleexpression.cpp index a7a88ec30a..089333b774 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"); |