diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-11 18:29:53 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-11 18:29:53 +0000 |
commit | 9398e8b365416e07c6c31485c9ecf9674e2c71b4 (patch) | |
tree | 6967fbccad4d025f810c3bef412bfd623cf7bc31 /xfa/fxfa/parser/cxfa_event.h | |
parent | 5c818b62f4b17ea18f4fc5805ba11e1936e6bc62 (diff) | |
download | pdfium-9398e8b365416e07c6c31485c9ecf9674e2c71b4.tar.xz |
Rename CXFA_Event methods
This CL renames CXFA_Event methods for clarity and fixes callers
where needed.
Change-Id: I902a35f36ee91c1b4aadd10382d93988ef26dc1c
Reviewed-on: https://pdfium-review.googlesource.com/22750
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_event.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_event.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/cxfa_event.h b/xfa/fxfa/parser/cxfa_event.h index a2b2fb804a..a410805675 100644 --- a/xfa/fxfa/parser/cxfa_event.h +++ b/xfa/fxfa/parser/cxfa_event.h @@ -19,8 +19,8 @@ class CXFA_Event : public CXFA_Node { XFA_AttributeEnum GetActivity(); XFA_Element GetEventType() const; - CXFA_Script* GetScript(); - CXFA_Submit* GetSubmit(); + CXFA_Script* GetScriptIfExists(); + CXFA_Submit* GetSubmitIfExists(); WideString GetRef(); }; |