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

Unified Diff: xfa/fwl/theme/listboxtp.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/fwl/theme/formtp.cpp ('k') | xfa/fwl/theme/monthcalendartp.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/theme/listboxtp.cpp
diff --git a/xfa/fwl/theme/listboxtp.cpp b/xfa/fwl/theme/listboxtp.cpp
index 0022e06f50faa552b2fa738c65204f2ef38c2b67..5c38166afa61b025f0d8687020063095bb6f7f2f 100644
--- a/xfa/fwl/theme/listboxtp.cpp
+++ b/xfa/fwl/theme/listboxtp.cpp
@@ -53,7 +53,7 @@ FX_BOOL CFWL_ListBoxTP::DrawBackground(CFWL_ThemeBackground* pParams) {
break;
}
case FWL_PART_LTB_Check: {
- FX_DWORD color = 0xFF000000;
+ uint32_t color = 0xFF000000;
if (pParams->m_dwStates == FWL_PARTSTATE_LTB_Checked) {
color = 0xFFFF0000;
} else if (pParams->m_dwStates == FWL_PARTSTATE_LTB_UnChecked) {
@@ -75,7 +75,7 @@ FWL_ERR CFWL_ListBoxTP::Finalize() {
return CFWL_WidgetTP::Finalize();
}
void CFWL_ListBoxTP::DrawListBoxItem(CFX_Graphics* pGraphics,
- FX_DWORD dwStates,
+ uint32_t dwStates,
const CFX_RectF* prtItem,
void* pData,
CFX_Matrix* pMatrix) {
« no previous file with comments | « xfa/fwl/theme/formtp.cpp ('k') | xfa/fwl/theme/monthcalendartp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698