summaryrefslogtreecommitdiff
path: root/fxjs/cjx_node.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-11-08 18:02:12 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-11-08 18:02:12 +0000
commit6bccc1228ddfccae296f8f4236512caad7cbc1c9 (patch)
treebe2115f4aabd95938a3babdf1b9229a1a633e20a /fxjs/cjx_node.h
parent1d86501aa9ee49890fbb43db60333a42f947cd74 (diff)
downloadpdfium-6bccc1228ddfccae296f8f4236512caad7cbc1c9.tar.xz
Convert XFA_ATTRIBUTETYPE to an enum class
This CL converts XFA_ATTRIBUTETYPE to an enum class XFA_AttributeType. Change-Id: I76185da08fcc8a7a4026ce430238db1b2cecf192 Reviewed-on: https://pdfium-review.googlesource.com/18051 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/cjx_node.h')
-rw-r--r--fxjs/cjx_node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fxjs/cjx_node.h b/fxjs/cjx_node.h
index 8fcca09dcf..73023e5c2e 100644
--- a/fxjs/cjx_node.h
+++ b/fxjs/cjx_node.h
@@ -406,11 +406,11 @@ class CJX_Node : public CJX_Object {
void SendAttributeChangeMessage(XFA_Attribute eAttribute, bool bScriptModify);
bool SetValue(XFA_Attribute eAttr,
- XFA_ATTRIBUTETYPE eType,
+ XFA_AttributeType eType,
void* pValue,
bool bNotify);
bool GetValue(XFA_Attribute eAttr,
- XFA_ATTRIBUTETYPE eType,
+ XFA_AttributeType eType,
bool bUseDefault,
void*& pValue);