Index: xfa/src/fxfa/src/app/xfa_textlayout.cpp |
diff --git a/xfa/src/fxfa/src/app/xfa_textlayout.cpp b/xfa/src/fxfa/src/app/xfa_textlayout.cpp |
index 629b7f15a66eb303c8bfa2a2904f731cf56ee806..5fbf6d723ae152f8b28cdc4a7350af2cdac1482b 100644 |
--- a/xfa/src/fxfa/src/app/xfa_textlayout.cpp |
+++ b/xfa/src/fxfa/src/app/xfa_textlayout.cpp |
@@ -1460,11 +1460,11 @@ FX_BOOL CXFA_TextLayout::LoadRichText(IFDE_XMLNode* pXMLNode, |
wsText = 0x00B7 + FX_WSTRC(L" "); |
} |
} else if (!bContentNode) { |
- if (iTabCount > 0) |
+ if (iTabCount > 0) { |
while (iTabCount-- > 0) { |
Tom Sepez
2016/02/23 17:44:19
nit: you can lose the inner {} now that the outer
dsinclair
2016/02/23 19:14:01
Done.
|
wsText += L'\t'; |
} |
- else { |
+ } else { |
m_textParser.GetEmbbedObj(m_pTextProvider, pXMLNode, wsText); |
} |
} |
@@ -1485,9 +1485,8 @@ FX_BOOL CXFA_TextLayout::LoadRichText(IFDE_XMLNode* pXMLNode, |
} else if (wsText.GetLength() > 0 && |
(0x20 == wsText.GetAt(wsText.GetLength() - 1))) { |
m_pLoader->m_dwFlags |= XFA_LOADERCNTXTFLG_FILTERSPACE; |
- } else if (wsText.GetLength() == 0) |
- ; |
- else { |
+ } else if (wsText.GetLength() == 0) { |
+ } else { |
m_pLoader->m_dwFlags &= ~XFA_LOADERCNTXTFLG_FILTERSPACE; |
} |
} |