Kaydet (Commit) 8633e6b3 authored tarafından Peter Foley's avatar Peter Foley Kaydeden (comit) Michael Stahl

Convert NULL/0 to nullptr

Change-Id: Iee6bb0867afd8aebe36e62b507f1332e3a581838
Reviewed-on: https://gerrit.libreoffice.org/21549Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst 79b46d5f
......@@ -385,7 +385,7 @@ protected:
#ifdef DBG_UTIL
, pBrushItem(reinterpret_cast<SvxBrushItem*>(-1))
#else
, pBrushItem(0)
, pBrushItem(nullptr)
#endif
, nSpaceIdx(0)
{}
......
......@@ -45,7 +45,7 @@ namespace xmloff { namespace token {
#if OSL_DEBUG_LEVEL > 0
#define TOKEN( s, e ) { sizeof(s)-1, s, nullptr, e }
#else
#define TOKEN( s, e ) { sizeof(s)-1, s, NULL }
#define TOKEN( s, e ) { sizeof(s)-1, s, nullptr }
#endif
struct XMLTokenEntry aTokenList[] =
......@@ -53,7 +53,7 @@ namespace xmloff { namespace token {
#if OSL_DEBUG_LEVEL > 0
{ 0, nullptr, nullptr, XML_TOKEN_START },
#else
{ 0, NULL, NULL }, // XML_TOKEN_START
{ 0, nullptr, nullptr }, // XML_TOKEN_START
#endif
// common XML
......@@ -3260,7 +3260,7 @@ namespace xmloff { namespace token {
#if OSL_DEBUG_LEVEL > 0
{ 0, nullptr, nullptr, XML_TOKEN_END }
#else
{ 0, NULL, NULL /* XML_TOKEN_END */ }
{ 0, nullptr, nullptr /* XML_TOKEN_END */ }
#endif
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment