From 1cd352e0a4bc19f96df199b0acfa32a344240d5e Mon Sep 17 00:00:00 2001 From: thestig Date: Tue, 7 Jun 2016 17:53:06 -0700 Subject: Get rid of NULLs in fpdfsdk/ Review-Url: https://codereview.chromium.org/2031653003 --- fpdfsdk/include/fsdk_mgr.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'fpdfsdk/include/fsdk_mgr.h') diff --git a/fpdfsdk/include/fsdk_mgr.h b/fpdfsdk/include/fsdk_mgr.h index a47f230c92..bf11a23765 100644 --- a/fpdfsdk/include/fsdk_mgr.h +++ b/fpdfsdk/include/fsdk_mgr.h @@ -111,13 +111,13 @@ class CPDFDoc_Environment final { FPDF_PAGE FFI_GetPage(FPDF_DOCUMENT document, int nPageIndex) { if (m_pInfo && m_pInfo->FFI_GetPage) return m_pInfo->FFI_GetPage(m_pInfo, document, nPageIndex); - return NULL; + return nullptr; } FPDF_PAGE FFI_GetCurrentPage(FPDF_DOCUMENT document) { if (m_pInfo && m_pInfo->FFI_GetCurrentPage) return m_pInfo->FFI_GetCurrentPage(m_pInfo, document); - return NULL; + return nullptr; } int FFI_GetRotation(FPDF_PAGE page) { @@ -181,7 +181,7 @@ class CPDFDoc_Environment final { CFX_WideString FFI_GetPlatform() { if (m_pInfo && m_pInfo->FFI_GetPlatform) { - int nRequiredLen = m_pInfo->FFI_GetPlatform(m_pInfo, NULL, 0); + int nRequiredLen = m_pInfo->FFI_GetPlatform(m_pInfo, nullptr, 0); if (nRequiredLen <= 0) return L""; @@ -275,7 +275,7 @@ class CPDFDoc_Environment final { const char* mode) { if (m_pInfo && m_pInfo->FFI_OpenFile) return m_pInfo->FFI_OpenFile(m_pInfo, fileType, wsURL, mode); - return NULL; + return nullptr; } CFX_WideString FFI_GetFilePath(FPDF_FILEHANDLER* pFileHandler) const { @@ -296,7 +296,7 @@ class CPDFDoc_Environment final { return new CFPDF_FileStream(fileHandler); } - return NULL; + return nullptr; } CFX_WideString FFI_PostRequestURL(const FX_WCHAR* wsURL, @@ -361,7 +361,7 @@ class CPDFDoc_Environment final { CFX_WideString FFI_GetLanguage() { if (m_pInfo && m_pInfo->FFI_GetLanguage) { - int nRequiredLen = m_pInfo->FFI_GetLanguage(m_pInfo, NULL, 0); + int nRequiredLen = m_pInfo->FFI_GetLanguage(m_pInfo, nullptr, 0); if (nRequiredLen <= 0) return L""; -- cgit v1.2.3