summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_rectangle.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-11-07 18:41:41 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-11-07 18:41:41 +0000
commitcce8e2f46d0fb64c2558c24a2aa33ac929dfdad6 (patch)
tree6346c809d62d1c24baa67b958a473d2f413dfea5 /xfa/fxfa/parser/cxfa_rectangle.h
parent50132e522702dd016b83ed12e91d065357fe0b59 (diff)
downloadpdfium-cce8e2f46d0fb64c2558c24a2aa33ac929dfdad6.tar.xz
Rename CXFA_Box to CXFA_BoxData
This CL renames CXFA_Box to CXFA_BoxData to make it clear it's part of the Data hierarchy. Change-Id: I5971eefb078f73228e2fcfc08d2025d800c319fb Reviewed-on: https://pdfium-review.googlesource.com/17975 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_rectangle.h')
-rw-r--r--xfa/fxfa/parser/cxfa_rectangle.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/parser/cxfa_rectangle.h b/xfa/fxfa/parser/cxfa_rectangle.h
index 8d18ace0de..07a4d7de70 100644
--- a/xfa/fxfa/parser/cxfa_rectangle.h
+++ b/xfa/fxfa/parser/cxfa_rectangle.h
@@ -7,13 +7,13 @@
#ifndef XFA_FXFA_PARSER_CXFA_RECTANGLE_H_
#define XFA_FXFA_PARSER_CXFA_RECTANGLE_H_
-#include "xfa/fxfa/parser/cxfa_box.h"
+#include "xfa/fxfa/parser/cxfa_boxdata.h"
class CXFA_Node;
-class CXFA_Rectangle : public CXFA_Box {
+class CXFA_Rectangle : public CXFA_BoxData {
public:
- explicit CXFA_Rectangle(CXFA_Node* pNode) : CXFA_Box(pNode) {}
+ explicit CXFA_Rectangle(CXFA_Node* pNode) : CXFA_BoxData(pNode) {}
};
#endif // XFA_FXFA_PARSER_CXFA_RECTANGLE_H_