From 517807e01712c1d4400ec8dde0ab3d9b467bbf04 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Wed, 8 Nov 2017 18:03:31 +0000 Subject: Convert XFA_UNIT to an enum class This CL converts the XFA_UNIT enum to the XFA_Unit enum class. Change-Id: I6e0588f265e45b863ff1ecc170279f558fb6bd67 Reviewed-on: https://pdfium-review.googlesource.com/18090 Commit-Queue: dsinclair Reviewed-by: Tom Sepez --- xfa/fxfa/parser/cxfa_widgetdata.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'xfa/fxfa/parser/cxfa_widgetdata.cpp') diff --git a/xfa/fxfa/parser/cxfa_widgetdata.cpp b/xfa/fxfa/parser/cxfa_widgetdata.cpp index 2abeea426d..d131b310cc 100644 --- a/xfa/fxfa/parser/cxfa_widgetdata.cpp +++ b/xfa/fxfa/parser/cxfa_widgetdata.cpp @@ -502,10 +502,10 @@ float CXFA_WidgetData::GetCheckButtonSize() { if (pUIChild) return pUIChild->JSNode() ->GetMeasure(XFA_Attribute::Size) - .ToUnit(XFA_UNIT_Pt); + .ToUnit(XFA_Unit::Pt); return XFA_GetAttributeDefaultValue_Measure( XFA_Element::CheckButton, XFA_Attribute::Size, XFA_XDPPACKET_Form) - .ToUnit(XFA_UNIT_Pt); + .ToUnit(XFA_Unit::Pt); } bool CXFA_WidgetData::IsAllowNeutral() { @@ -1276,7 +1276,7 @@ bool CXFA_WidgetData::GetBarcodeAttribute_ModuleWidth(int32_t* val) { CXFA_Measurement mModuleWidthHeight; if (pUIChild->JSNode()->TryMeasure(XFA_Attribute::ModuleWidth, mModuleWidthHeight, true)) { - *val = static_cast(mModuleWidthHeight.ToUnit(XFA_UNIT_Pt)); + *val = static_cast(mModuleWidthHeight.ToUnit(XFA_Unit::Pt)); return true; } return false; @@ -1287,7 +1287,7 @@ bool CXFA_WidgetData::GetBarcodeAttribute_ModuleHeight(int32_t* val) { CXFA_Measurement mModuleWidthHeight; if (pUIChild->JSNode()->TryMeasure(XFA_Attribute::ModuleHeight, mModuleWidthHeight, true)) { - *val = static_cast(mModuleWidthHeight.ToUnit(XFA_UNIT_Pt)); + *val = static_cast(mModuleWidthHeight.ToUnit(XFA_Unit::Pt)); return true; } return false; -- cgit v1.2.3