| Index: xfa/fxfa/app/xfa_textlayout.cpp
|
| diff --git a/xfa/fxfa/app/xfa_textlayout.cpp b/xfa/fxfa/app/xfa_textlayout.cpp
|
| index ced7acbb32c4a054c6a632077856d8df87bab61a..ff2140d509f25fc01c5e9573ecd5f666ab46ce97 100644
|
| --- a/xfa/fxfa/app/xfa_textlayout.cpp
|
| +++ b/xfa/fxfa/app/xfa_textlayout.cpp
|
| @@ -728,7 +728,7 @@ CFDE_XMLNode* CXFA_TextLayout::GetXMLContainerNode() {
|
| CFDE_XMLElement* pXMLElement = static_cast<CFDE_XMLElement*>(pXMLChild);
|
| CFX_WideString wsTag;
|
| pXMLElement->GetLocalTagName(wsTag);
|
| - if (wsTag.Equal(FX_WSTRC(L"body")) || wsTag.Equal(FX_WSTRC(L"html"))) {
|
| + if (wsTag == FX_WSTRC(L"body") || wsTag == FX_WSTRC(L"html")) {
|
| pXMLContainer = pXMLChild;
|
| break;
|
| }
|
|
|