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_layoutpseudomodel.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_layoutpseudomodel.h')
-rw-r--r-- | xfa/fxfa/parser/xfa_script_layoutpseudomodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/xfa_script_layoutpseudomodel.h b/xfa/fxfa/parser/xfa_script_layoutpseudomodel.h index 02e25b42f5..506afcd74f 100644 --- a/xfa/fxfa/parser/xfa_script_layoutpseudomodel.h +++ b/xfa/fxfa/parser/xfa_script_layoutpseudomodel.h @@ -18,7 +18,7 @@ enum XFA_LAYOUTMODEL_HWXY { XFA_LAYOUTMODEL_Y }; -class CScript_LayoutPseudoModel : public CXFA_OrdinaryObject { +class CScript_LayoutPseudoModel : public CXFA_Object { public: explicit CScript_LayoutPseudoModel(CXFA_Document* pDocument); ~CScript_LayoutPseudoModel() override; |