diff options
author | Peter Foley <pefoley2@pefoley.com> | 2016-01-17 14:28:29 -0500 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-01-18 18:43:51 +0000 |
commit | 8633e6b3f5882508f23ed4dba2b3651ef7a4e524 (patch) | |
tree | eb90f5d0ba47de932bbf57afb5553cc334a2d4e3 /sw/source | |
parent | 79b46d5fad29b8618fed539d04611bfb4f225c5f (diff) |
Convert NULL/0 to nullptr
Change-Id: Iee6bb0867afd8aebe36e62b507f1332e3a581838
Reviewed-on: https://gerrit.libreoffice.org/21549
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/text/inftxt.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/text/inftxt.hxx b/sw/source/core/text/inftxt.hxx index 3753bbdbb13f..c463bd3dfdab 100644 --- a/sw/source/core/text/inftxt.hxx +++ b/sw/source/core/text/inftxt.hxx @@ -385,7 +385,7 @@ protected: #ifdef DBG_UTIL , pBrushItem(reinterpret_cast<SvxBrushItem*>(-1)) #else - , pBrushItem(0) + , pBrushItem(nullptr) #endif , nSpaceIdx(0) {} |