From f39074c0ae47a84c496782f8b75bcce1e1cfdf59 Mon Sep 17 00:00:00 2001 From: tsepez Date: Wed, 26 Oct 2016 15:33:58 -0700 Subject: Fix some FX_BOOL / int noise in fxcrt. Review-Url: https://codereview.chromium.org/2450183003 --- xfa/fxfa/app/xfa_ffapp.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'xfa/fxfa/app/xfa_ffapp.cpp') diff --git a/xfa/fxfa/app/xfa_ffapp.cpp b/xfa/fxfa/app/xfa_ffapp.cpp index d60d48fa75..06cad02253 100644 --- a/xfa/fxfa/app/xfa_ffapp.cpp +++ b/xfa/fxfa/app/xfa_ffapp.cpp @@ -37,9 +37,7 @@ FX_FILESIZE CXFA_FileRead::GetSize() { return dwSize; } -FX_BOOL CXFA_FileRead::ReadBlock(void* buffer, - FX_FILESIZE offset, - size_t size) { +bool CXFA_FileRead::ReadBlock(void* buffer, FX_FILESIZE offset, size_t size) { int32_t iCount = m_Data.GetSize(); int32_t index = 0; while (index < iCount) { @@ -58,13 +56,13 @@ FX_BOOL CXFA_FileRead::ReadBlock(void* buffer, FXSYS_memcpy(buffer, acc.GetData() + offset, dwRead); size -= dwRead; if (size == 0) { - return TRUE; + return true; } buffer = (uint8_t*)buffer + dwRead; offset = 0; index++; } - return FALSE; + return false; } void CXFA_FileRead::Release() { -- cgit v1.2.3