| Index: xfa/fxfa/app/xfa_textlayout.cpp
|
| diff --git a/xfa/fxfa/app/xfa_textlayout.cpp b/xfa/fxfa/app/xfa_textlayout.cpp
|
| index f60ed26c643559c283732fcf5347246e859b71a7..07a353e28710fbf538637f0d84080be8e8a09cea 100644
|
| --- a/xfa/fxfa/app/xfa_textlayout.cpp
|
| +++ b/xfa/fxfa/app/xfa_textlayout.cpp
|
| @@ -729,7 +729,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;
|
| }
|
|
|