diff options
author | Lei Zhang <thestig@chromium.org> | 2014-07-08 16:56:13 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2014-07-08 16:56:13 -0700 |
commit | ab99c380bfeb5bf2007c0928f816c737f733250f (patch) | |
tree | b3fd7eda6e8ed8f07674f6a6fba21e82ca83bee7 /samples/pdfium_test.cc | |
parent | 95c018e2d15ecc3a5bd2a9aab18638316a6d3d46 (diff) | |
download | pdfium-ab99c380bfeb5bf2007c0928f816c737f733250f.tar.xz |
Revert commit 95c018e2d15ecc3a5bd2a9aab18638316a6d3d46
Fixes for re-enabling more MSVC level 4 warnings: pdfium/ edition
BUG=81439
TBR=pkasting@chromium.org
Review URL: https://codereview.chromium.org/376043003
Diffstat (limited to 'samples/pdfium_test.cc')
-rw-r--r-- | samples/pdfium_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/pdfium_test.cc b/samples/pdfium_test.cc index f8e567349b..c504bf4823 100644 --- a/samples/pdfium_test.cc +++ b/samples/pdfium_test.cc @@ -230,7 +230,7 @@ void RenderPdf(const char* name, const char* pBuf, size_t len, int width = static_cast<int>(FPDF_GetPageWidth(page)); int height = static_cast<int>(FPDF_GetPageHeight(page)); FPDF_BITMAP bitmap = FPDFBitmap_Create(width, height, 0); - FPDFBitmap_FillRect(bitmap, 0, 0, width, height, 0xFFFFFFFF); + FPDFBitmap_FillRect(bitmap, 0, 0, width, height, 255, 255, 255, 255); FPDF_RenderPageBitmap(bitmap, page, 0, 0, width, height, 0, 0); FPDF_FFLDraw(form, bitmap, page, 0, 0, width, height, 0, 0); |