Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Unified Diff: xfa/fgas/layout/fgas_linebreak.cpp

Issue 1830323006: Remove FX_DWORD from XFA. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/fgas/font/fgas_stdfontmgr.cpp ('k') | xfa/fgas/layout/fgas_rtfbreak.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fgas/layout/fgas_linebreak.cpp
diff --git a/xfa/fgas/layout/fgas_linebreak.cpp b/xfa/fgas/layout/fgas_linebreak.cpp
index 295b5b6b8664ea1d1b78dd5ef892e5e43d7920c1..72f5d703238fbc6e303786f81da3ba4eedd314f3 100644
--- a/xfa/fgas/layout/fgas_linebreak.cpp
+++ b/xfa/fgas/layout/fgas_linebreak.cpp
@@ -273,7 +273,7 @@ void FX_GetLineBreakPositions(const FX_WCHAR* pwsText,
if (iLength < 2) {
return;
}
- FX_DWORD dwCur, dwNext;
+ uint32_t dwCur, dwNext;
FX_WCHAR wch;
wch = *pwsText++;
dwCur = kTextLayoutCodeProperties[(uint16_t)wch] & 0x003F;
@@ -298,7 +298,7 @@ void FX_GetLineBreakPositions(const FX_WCHAR* pwsText,
return;
}
FX_LINEBREAKTYPE eType;
- FX_DWORD dwCur, dwNext;
+ uint32_t dwCur, dwNext;
FX_WCHAR wch;
wch = *pwsText++;
dwCur = kTextLayoutCodeProperties[(uint16_t)wch] & 0x003F;
« no previous file with comments | « xfa/fgas/font/fgas_stdfontmgr.cpp ('k') | xfa/fgas/layout/fgas_rtfbreak.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698