From 8bae6345bff0508f5f01e0061d7b576f36e6961d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 11 Nov 2015 16:07:35 +0100 Subject: loplugin:nullptr Change-Id: Id0cab3b90ea9f3de7dc63f58ef247ba512af79f4 --- include/svx/sxcecitm.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/svx/sxcecitm.hxx') diff --git a/include/svx/sxcecitm.hxx b/include/svx/sxcecitm.hxx index e2a5e9a5ebdd..94e37516226c 100644 --- a/include/svx/sxcecitm.hxx +++ b/include/svx/sxcecitm.hxx @@ -54,7 +54,7 @@ public: SdrCaptionEscIsRelItem(bool bRel=true): SdrYesNoItem(SDRATTR_CAPTIONESCISREL,bRel) {} SdrCaptionEscIsRelItem(SvStream& rIn) : SdrYesNoItem(SDRATTR_CAPTIONESCISREL,rIn) {} virtual ~SdrCaptionEscIsRelItem(); - virtual SfxPoolItem* Clone(SfxItemPool* pPool=NULL) const override; + virtual SfxPoolItem* Clone(SfxItemPool* pPool=nullptr) const override; }; @@ -69,7 +69,7 @@ public: SdrCaptionEscRelItem(long nEscRel=5000): SfxInt32Item(SDRATTR_CAPTIONESCREL,nEscRel) {} SdrCaptionEscRelItem(SvStream& rIn) : SfxInt32Item(SDRATTR_CAPTIONESCREL,rIn) {} virtual ~SdrCaptionEscRelItem(); - virtual SfxPoolItem* Clone(SfxItemPool* pPool=NULL) const override; + virtual SfxPoolItem* Clone(SfxItemPool* pPool=nullptr) const override; }; -- cgit