Index: xfa/fee/fx_wordbreak/fx_wordbreak_impl.cpp |
diff --git a/xfa/src/fee/fx_wordbreak/fx_wordbreak_impl.cpp b/xfa/fee/fx_wordbreak/fx_wordbreak_impl.cpp |
similarity index 97% |
rename from xfa/src/fee/fx_wordbreak/fx_wordbreak_impl.cpp |
rename to xfa/fee/fx_wordbreak/fx_wordbreak_impl.cpp |
index 036b4f80facbc7a723d61934ed6860eff452ed69..d1b079edb11bb822576da8de49b798e20f319b38 100644 |
--- a/xfa/src/fee/fx_wordbreak/fx_wordbreak_impl.cpp |
+++ b/xfa/fee/fx_wordbreak/fx_wordbreak_impl.cpp |
@@ -4,13 +4,13 @@ |
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
-#include "xfa/src/fee/fx_wordbreak/fx_wordbreak_impl.h" |
+#include "xfa/fee/fx_wordbreak/fx_wordbreak_impl.h" |
FX_WordBreakProp FX_GetWordBreakProperty(FX_WCHAR wcCodePoint) { |
FX_DWORD dwProperty = |
(FX_DWORD)gs_FX_WordBreak_CodePointProperties[wcCodePoint >> 1]; |
- return (FX_WordBreakProp)(((wcCodePoint) & 1) ? (dwProperty & 0x0F) |
- : (dwProperty >> 4)); |
+ return (FX_WordBreakProp)(((wcCodePoint)&1) ? (dwProperty & 0x0F) |
+ : (dwProperty >> 4)); |
} |
CFX_CharIter::CFX_CharIter(const CFX_WideString& wsText) |
: m_wsText(wsText), m_nIndex(0) { |