diff options
author | thestig <thestig@chromium.org> | 2016-06-07 10:46:22 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-07 10:46:23 -0700 |
commit | 4997b22f84307521a62838f874928bf56cd3423c (patch) | |
tree | ad11d99ac0a491ee222e9d0a42ec3b6ad3354e2a /core/fxcrt/include/fx_ucd.h | |
parent | 0687e76dc259c678b3f29a6608331f07ffd8f1e2 (diff) | |
download | pdfium-4997b22f84307521a62838f874928bf56cd3423c.tar.xz |
Get rid of NULLs in core/
Review-Url: https://codereview.chromium.org/2032613003
Diffstat (limited to 'core/fxcrt/include/fx_ucd.h')
-rw-r--r-- | core/fxcrt/include/fx_ucd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcrt/include/fx_ucd.h b/core/fxcrt/include/fx_ucd.h index fbf3187c86..c2c4688628 100644 --- a/core/fxcrt/include/fx_ucd.h +++ b/core/fxcrt/include/fx_ucd.h @@ -158,7 +158,7 @@ class CFX_TxtChar : public CFX_Char { m_iBidiLevel(0), m_iBidiPos(0), m_iBidiOrder(0), - m_pUserData(NULL) {} + m_pUserData(nullptr) {} uint32_t m_dwStatus; int16_t m_iBidiClass; int16_t m_iBidiLevel; @@ -179,7 +179,7 @@ class CFX_RTFChar : public CFX_Char { m_iBidiPos(0), m_dwLayoutStyles(0), m_dwIdentity(0), - m_pUserData(NULL) {} + m_pUserData(nullptr) {} uint32_t m_dwStatus; int32_t m_iFontSize; int32_t m_iFontHeight; |