diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-06-12 19:26:15 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-06-12 19:26:15 +0000 |
commit | 8128485d0169a8dcbe14289a868ff3c27440bfcf (patch) | |
tree | fd80bed666b8861efe40396bb599c948eb8c3c91 /fpdfsdk/cpdfsdk_helpers.h | |
parent | a3843c99e7a631b2fbf87bbc12834e61bfb7b6f2 (diff) | |
download | pdfium-8128485d0169a8dcbe14289a868ff3c27440bfcf.tar.xz |
CheckUnSupportError() always called with FPDF_ERR_SUCCESS.
So remove the argument, and the logic dependent upon it being otherwise.
Rename function to more accurately reflect its purpose. Remove needless
null check while we're at it.
Change-Id: I7e119429fd159334eabcc250b5dac215580882ea
Reviewed-on: https://pdfium-review.googlesource.com/34950
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/cpdfsdk_helpers.h')
-rw-r--r-- | fpdfsdk/cpdfsdk_helpers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/cpdfsdk_helpers.h b/fpdfsdk/cpdfsdk_helpers.h index 98d7e45e5f..88e05302fe 100644 --- a/fpdfsdk/cpdfsdk_helpers.h +++ b/fpdfsdk/cpdfsdk_helpers.h @@ -246,7 +246,7 @@ void FPDF_RenderPage_Retail(CPDF_PageRenderContext* pContext, bool bNeedToRestore, IPDFSDK_PauseAdapter* pause); -void CheckUnSupportError(CPDF_Document* pDoc, uint32_t err_code); +void ReportUnsupportedFeatures(CPDF_Document* pDoc); void CheckUnSupportAnnot(CPDF_Document* pDoc, const CPDF_Annot* pPDFAnnot); #ifndef _WIN32 |