diff options
author | dsinclair <dsinclair@chromium.org> | 2016-06-23 07:52:01 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-23 07:52:01 -0700 |
commit | 937a11304dbf7abd97b76da8154e2b3bf5141aeb (patch) | |
tree | 931234ed6d3d1ec96972c92c720f7600b80a708f /xfa/fxfa/parser/xfa_script_eventpseudomodel.h | |
parent | 070fcdfeafb17a9d3ada1418f48fd7f19aa4cf83 (diff) | |
download | pdfium-937a11304dbf7abd97b76da8154e2b3bf5141aeb.tar.xz |
Remove CXFA_OrdinaryObject class
The CXFA_OrdinaryObject class no longer has any functionality but is just wraps
CXFA_Object and sets the object type for the sub classes. This Cl removes the
class and has the subclass set the object type themselves.
This CL also renames the OrdinaryObject type to just Object.
Review-Url: https://codereview.chromium.org/2082343003
Diffstat (limited to 'xfa/fxfa/parser/xfa_script_eventpseudomodel.h')
-rw-r--r-- | xfa/fxfa/parser/xfa_script_eventpseudomodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/xfa_script_eventpseudomodel.h b/xfa/fxfa/parser/xfa_script_eventpseudomodel.h index 3a53b0b05d..ef59b3baff 100644 --- a/xfa/fxfa/parser/xfa_script_eventpseudomodel.h +++ b/xfa/fxfa/parser/xfa_script_eventpseudomodel.h @@ -30,7 +30,7 @@ enum class XFA_Event { CancelAction }; -class CScript_EventPseudoModel : public CXFA_OrdinaryObject { +class CScript_EventPseudoModel : public CXFA_Object { public: explicit CScript_EventPseudoModel(CXFA_Document* pDocument); ~CScript_EventPseudoModel() override; |