diff options
author | Lei Zhang <thestig@chromium.org> | 2017-02-24 18:22:46 -0800 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-02-27 19:56:28 +0000 |
commit | 9162ff85c323b05e3280b319a388934e871e4aea (patch) | |
tree | e296e9b6d3e28fd150395161a3a4f6ecea2ad1ab /public/fpdfview.h | |
parent | c5a1472ec5a809ff524c8888ac5884498801d06f (diff) | |
download | pdfium-9162ff85c323b05e3280b319a388934e871e4aea.tar.xz |
Fix nits from commit db764708.
- Constify test data
- ASSERT_EQ() buffer size
- EXPECT_EQ() arguments are reversed
- Fix typos in comments
Change-Id: I846bfcc29bbf43d0a8b333250d1cce1aae5a8d59
Reviewed-on: https://pdfium-review.googlesource.com/2841
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'public/fpdfview.h')
-rw-r--r-- | public/fpdfview.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/public/fpdfview.h b/public/fpdfview.h index 7378d5f9b1..1c47a366bd 100644 --- a/public/fpdfview.h +++ b/public/fpdfview.h @@ -252,7 +252,8 @@ DLLEXPORT void STDCALL FPDF_SetPrintTextWithGDI(FPDF_BOOL use_gdi); // All other values are invalid. // Return value: // True if successful, false if unsucessful (typically invalid input). -DLLEXPORT FPDF_BOOL STDCALL FPDF_SetPrintPostscriptLevel(FPDF_BOOL use_gdi); +DLLEXPORT FPDF_BOOL STDCALL +FPDF_SetPrintPostscriptLevel(FPDF_BOOL postscript_level); #endif // defined(_WIN32) // Function: FPDF_LoadDocument |