From a5c85987a7604c0915268cb694f03f3452fdac6a Mon Sep 17 00:00:00 2001 From: dsinclair Date: Thu, 23 Jun 2016 07:56:38 -0700 Subject: Remove IsOrdinaryList; rename to OrdinaryList to List IsOrdinaryList is no longer used, removed. Rename list item as Ordinary doesn't hold any meaning. Review-Url: https://codereview.chromium.org/2079393006 --- xfa/fxfa/parser/xfa_object.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'xfa/fxfa/parser/xfa_object.h') diff --git a/xfa/fxfa/parser/xfa_object.h b/xfa/fxfa/parser/xfa_object.h index 8b1f2303f6..09d8183ce3 100644 --- a/xfa/fxfa/parser/xfa_object.h +++ b/xfa/fxfa/parser/xfa_object.h @@ -19,7 +19,7 @@ class CXFA_NodeList; enum class XFA_ObjectType { Object, - OrdinaryList, + List, NodeList, Node, NodeC, @@ -65,9 +65,6 @@ class CXFA_Object : public CFXJSE_HostObject { m_objectType == XFA_ObjectType::VariablesThis; } bool IsNodeList() const { return m_objectType == XFA_ObjectType::NodeList; } - bool IsOrdinaryList() const { - return m_objectType == XFA_ObjectType::OrdinaryList; - } bool IsContentNode() const { return m_objectType == XFA_ObjectType::ContentNode; } -- cgit v1.2.3