Index: samples/pdfium_test.cc |
diff --git a/samples/pdfium_test.cc b/samples/pdfium_test.cc |
index fc94fde19f2469ee1a72b5ece949f7107ad49be9..571bfcd3e697a18e77a8e59b275ca75a68dd7aba 100644 |
--- a/samples/pdfium_test.cc |
+++ b/samples/pdfium_test.cc |
@@ -344,14 +344,14 @@ FPDF_BOOL Is_Data_Avail(FX_FILEAVAIL* pThis, size_t offset, size_t size) { |
void Add_Segment(FX_DOWNLOADHINTS* pThis, size_t offset, size_t size) { |
} |
-FPDF_BOOL RenderPage(const std::string& name, |
- const FPDF_DOCUMENT& doc, |
- const FPDF_FORMHANDLE& form, |
- const int page_index, |
- const Options& options) { |
+bool RenderPage(const std::string& name, |
+ const FPDF_DOCUMENT& doc, |
+ const FPDF_FORMHANDLE& form, |
+ const int page_index, |
+ const Options& options) { |
FPDF_PAGE page = FPDF_LoadPage(doc, page_index); |
if (!page) { |
- return FALSE; |
+ return false; |
} |
FPDF_TEXTPAGE text_page = FPDFText_LoadPage(page); |
FORM_OnAfterLoadPage(page, form); |
@@ -367,7 +367,7 @@ FPDF_BOOL RenderPage(const std::string& name, |
FPDF_BITMAP bitmap = FPDFBitmap_Create(width, height, 0); |
if (!bitmap) { |
fprintf(stderr, "Page was too large to be rendered.\n"); |
- return FALSE; |
+ return false; |
} |
FPDFBitmap_FillRect(bitmap, 0, 0, width, height, 0xFFFFFFFF); |
@@ -405,7 +405,7 @@ FPDF_BOOL RenderPage(const std::string& name, |
FORM_OnBeforeClosePage(page, form); |
FPDFText_ClosePage(text_page); |
FPDF_ClosePage(page); |
- return TRUE; |
+ return true; |
} |
void RenderPdf(const std::string& name, const char* pBuf, size_t len, |
@@ -442,7 +442,7 @@ void RenderPdf(const std::string& name, const char* pBuf, size_t len, |
FPDF_DOCUMENT doc; |
int nRet = PDF_DATA_NOTAVAIL; |
- FPDF_BOOL bIsLinearized = FALSE; |
+ bool bIsLinearized = false; |
FPDF_AVAIL pdf_avail = FPDFAvail_Create(&file_avail, &file_access); |
if (FPDFAvail_IsLinearized(pdf_avail) == PDF_LINEARIZED) { |
@@ -463,7 +463,7 @@ void RenderPdf(const std::string& name, const char* pBuf, size_t len, |
nRet); |
return; |
} |
- bIsLinearized = TRUE; |
+ bIsLinearized = true; |
} |
} else { |
fprintf(stderr, "Non-linearized path...\n"); |