Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1342)

Unified Diff: core/include/fpdfapi/fpdf_resource.h

Issue 1520063002: Get rid of most instance of 'foo == NULL' (Closed) Base URL: https://pdfium.googlesource.com/pdfium@bstr_isnull
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | core/include/fxcrt/fx_basic.h » ('j') | core/include/fxcrt/fx_basic.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/include/fpdfapi/fpdf_resource.h
diff --git a/core/include/fpdfapi/fpdf_resource.h b/core/include/fpdfapi/fpdf_resource.h
index 6c39e381f5427816472bf8bcaf721bfccbcfbbab..619984750e6e2fe10e217bb372dc0356b2a0da4c 100644
--- a/core/include/fpdfapi/fpdf_resource.h
+++ b/core/include/fpdfapi/fpdf_resource.h
@@ -605,7 +605,7 @@ class CPDF_Color {
~CPDF_Color();
- FX_BOOL IsNull() const { return m_pBuffer == NULL; }
+ FX_BOOL IsNull() const { return !m_pBuffer; }
FX_BOOL IsEqual(const CPDF_Color& other) const;
« no previous file with comments | « no previous file | core/include/fxcrt/fx_basic.h » ('j') | core/include/fxcrt/fx_basic.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698