diff options
author | Lei Zhang <thestig@chromium.org> | 2018-10-18 20:51:54 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-10-18 20:51:54 +0000 |
commit | 8e49f3fce1a56634284b254a0dc2d329da349355 (patch) | |
tree | 153842a78192a5726376efadeff7c2be69ec4191 /xfa | |
parent | 4754adaf70d8708610ea31a4d5e3df7c4fcb2ef0 (diff) | |
download | pdfium-8e49f3fce1a56634284b254a0dc2d329da349355.tar.xz |
Do IWYU in core/fxcrt/css and fix lint errors.
Change-Id: I6d2b35849e9f1935277986b6c72e6f507d976974
Reviewed-on: https://pdfium-review.googlesource.com/c/43948
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'xfa')
-rw-r--r-- | xfa/fxfa/cxfa_textparser.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/xfa/fxfa/cxfa_textparser.cpp b/xfa/fxfa/cxfa_textparser.cpp index d8150a6fa0..24276e1ce0 100644 --- a/xfa/fxfa/cxfa_textparser.cpp +++ b/xfa/fxfa/cxfa_textparser.cpp @@ -316,21 +316,21 @@ XFA_AttributeEnum CXFA_TextParser::GetVAlign( float CXFA_TextParser::GetTabInterval(CFX_CSSComputedStyle* pStyle) const { WideString wsValue; - if (pStyle && pStyle->GetCustomStyle(L"tab-interval", wsValue)) + if (pStyle && pStyle->GetCustomStyle(L"tab-interval", &wsValue)) return CXFA_Measurement(wsValue.AsStringView()).ToUnit(XFA_Unit::Pt); return 36; } int32_t CXFA_TextParser::CountTabs(CFX_CSSComputedStyle* pStyle) const { WideString wsValue; - if (pStyle && pStyle->GetCustomStyle(L"xfa-tab-count", wsValue)) + if (pStyle && pStyle->GetCustomStyle(L"xfa-tab-count", &wsValue)) return wsValue.GetInteger(); return 0; } bool CXFA_TextParser::IsSpaceRun(CFX_CSSComputedStyle* pStyle) const { WideString wsValue; - if (pStyle && pStyle->GetCustomStyle(L"xfa-spacerun", wsValue)) { + if (pStyle && pStyle->GetCustomStyle(L"xfa-spacerun", &wsValue)) { wsValue.MakeLower(); return wsValue == L"yes"; } @@ -382,7 +382,7 @@ int32_t CXFA_TextParser::GetHorScale(CXFA_TextProvider* pTextProvider, const CFX_XMLNode* pXMLNode) const { if (pStyle) { WideString wsValue; - if (pStyle->GetCustomStyle(L"xfa-font-horizontal-scale", wsValue)) + if (pStyle->GetCustomStyle(L"xfa-font-horizontal-scale", &wsValue)) return wsValue.GetInteger(); while (pXMLNode) { @@ -391,7 +391,7 @@ int32_t CXFA_TextParser::GetHorScale(CXFA_TextProvider* pTextProvider, CXFA_TextParseContext* pContext = it->second.get(); if (pContext && pContext->m_pParentStyle && pContext->m_pParentStyle->GetCustomStyle( - L"xfa-font-horizontal-scale", wsValue)) { + L"xfa-font-horizontal-scale", &wsValue)) { return wsValue.GetInteger(); } } @@ -407,7 +407,7 @@ int32_t CXFA_TextParser::GetVerScale(CXFA_TextProvider* pTextProvider, CFX_CSSComputedStyle* pStyle) const { if (pStyle) { WideString wsValue; - if (pStyle->GetCustomStyle(L"xfa-font-vertical-scale", wsValue)) + if (pStyle->GetCustomStyle(L"xfa-font-vertical-scale", &wsValue)) return wsValue.GetInteger(); } @@ -437,7 +437,7 @@ void CXFA_TextParser::GetUnderline(CXFA_TextProvider* pTextProvider, iUnderline = 1; WideString wsValue; - if (pStyle->GetCustomStyle(L"underlinePeriod", wsValue)) { + if (pStyle->GetCustomStyle(L"underlinePeriod", &wsValue)) { if (wsValue == L"word") iPeriod = XFA_AttributeEnum::Word; } else if (font) { @@ -551,8 +551,8 @@ bool CXFA_TextParser::GetTabstops(CFX_CSSComputedStyle* pStyle, return false; WideString wsValue; - if (!pStyle->GetCustomStyle(L"xfa-tab-stops", wsValue) && - !pStyle->GetCustomStyle(L"tab-stops", wsValue)) { + if (!pStyle->GetCustomStyle(L"xfa-tab-stops", &wsValue) && + !pStyle->GetCustomStyle(L"tab-stops", &wsValue)) { return false; } |