diff options
author | Nicolas Pena <npm@chromium.org> | 2016-12-01 15:15:49 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2016-12-01 20:34:10 +0000 |
commit | 991f61869cfba58206cc7ec038fe8d5305bbb2ba (patch) | |
tree | 5935ae9cecb17d07cbd2023cefc429050fdb5319 /xfa/fxfa/fm2js/xfa_fmparse.h | |
parent | 8a463c5a1a2252b5fdbff3b5ab07d50273bbc391 (diff) | |
download | pdfium-991f61869cfba58206cc7ec038fe8d5305bbb2ba.tar.xz |
Move Init to constructor in CXFA_FMProgram
Change-Id: I6b2d1a5b06211b32f3053aad4d7ae7501ec8d8f6
Reviewed-on: https://pdfium-review.googlesource.com/2093
Commit-Queue: Nicolás Peña <npm@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/fm2js/xfa_fmparse.h')
-rw-r--r-- | xfa/fxfa/fm2js/xfa_fmparse.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xfa/fxfa/fm2js/xfa_fmparse.h b/xfa/fxfa/fm2js/xfa_fmparse.h index 5f8022f270..8f2671d1b0 100644 --- a/xfa/fxfa/fm2js/xfa_fmparse.h +++ b/xfa/fxfa/fm2js/xfa_fmparse.h @@ -15,10 +15,9 @@ class CXFA_FMParse { public: - CXFA_FMParse(); + CXFA_FMParse(const CFX_WideStringC& wsFormcalc, CXFA_FMErrorInfo* pErrorInfo); ~CXFA_FMParse(); - int32_t Init(const CFX_WideStringC& wsFormcalc, CXFA_FMErrorInfo* pErrorInfo); void NextToken(); void Check(XFA_FM_TOKEN op); void Error(uint32_t lineNum, const FX_WCHAR* msg, ...); @@ -51,7 +50,7 @@ class CXFA_FMParse { private: std::unique_ptr<CXFA_FMLexer> m_lexer; CXFA_FMToken* m_pToken; - CXFA_FMErrorInfo* m_pErrorInfo; + CXFA_FMErrorInfo* const m_pErrorInfo; }; #endif // XFA_FXFA_FM2JS_XFA_FMPARSE_H_ |