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

Unified Diff: xfa/src/fwl/src/lightwidget/checkbox.cpp

Issue 1172793002: Merge to XFA: Use stdint.h types throughout PDFium. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 6 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/src/fwl/src/lightwidget/app.cpp ('k') | xfa/src/fwl/src/lightwidget/combobox.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/src/fwl/src/lightwidget/checkbox.cpp
diff --git a/xfa/src/fwl/src/lightwidget/checkbox.cpp b/xfa/src/fwl/src/lightwidget/checkbox.cpp
index cb659fffa7dc344bade7e70522263e818b6e6422..298aa41b4e288754566edbf0ebeaa3bb6b22a218 100644
--- a/xfa/src/fwl/src/lightwidget/checkbox.cpp
+++ b/xfa/src/fwl/src/lightwidget/checkbox.cpp
@@ -45,11 +45,11 @@ FWL_ERR CFWL_CheckBox::SetBoxSize(FX_FLOAT fHeight)
m_checkboxData.m_fBoxHeight = fHeight;
return FWL_ERR_Succeeded;
}
-FX_INT32 CFWL_CheckBox::GetCheckState()
+int32_t CFWL_CheckBox::GetCheckState()
{
return ((IFWL_CheckBox*)m_pImp)->GetCheckState();
}
-FWL_ERR CFWL_CheckBox::SetCheckState(FX_INT32 iCheck)
+FWL_ERR CFWL_CheckBox::SetCheckState(int32_t iCheck)
{
return ((IFWL_CheckBox*)m_pImp)->SetCheckState(iCheck);
}
« no previous file with comments | « xfa/src/fwl/src/lightwidget/app.cpp ('k') | xfa/src/fwl/src/lightwidget/combobox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698