diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-11 16:07:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-11 16:07:35 +0100 |
commit | 8bae6345bff0508f5f01e0061d7b576f36e6961d (patch) | |
tree | cb187d2ea50c7aa39a1f4c1f66faa0b395105de8 /include/svx/sxcllitm.hxx | |
parent | 54c679af63b87dd83b6da07201b68728bded4ba9 (diff) |
loplugin:nullptr
Change-Id: Id0cab3b90ea9f3de7dc63f58ef247ba512af79f4
Diffstat (limited to 'include/svx/sxcllitm.hxx')
-rw-r--r-- | include/svx/sxcllitm.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/sxcllitm.hxx b/include/svx/sxcllitm.hxx index b343a10771f6..224b181cfc65 100644 --- a/include/svx/sxcllitm.hxx +++ b/include/svx/sxcllitm.hxx @@ -34,7 +34,7 @@ public: SdrCaptionLineLenItem(long nLineLen=0): SdrMetricItem(SDRATTR_CAPTIONLINELEN,nLineLen) {} SdrCaptionLineLenItem(SvStream& rIn) : SdrMetricItem(SDRATTR_CAPTIONLINELEN,rIn) {} virtual ~SdrCaptionLineLenItem(); - virtual SfxPoolItem* Clone(SfxItemPool* pPool=NULL) const override; + virtual SfxPoolItem* Clone(SfxItemPool* pPool=nullptr) const override; }; @@ -48,7 +48,7 @@ public: SdrCaptionFitLineLenItem(bool bBestFit=true): SdrYesNoItem(SDRATTR_CAPTIONFITLINELEN,bBestFit) {} SdrCaptionFitLineLenItem(SvStream& rIn) : SdrYesNoItem(SDRATTR_CAPTIONFITLINELEN,rIn) {} virtual ~SdrCaptionFitLineLenItem(); - virtual SfxPoolItem* Clone(SfxItemPool* pPool=NULL) const override; + virtual SfxPoolItem* Clone(SfxItemPool* pPool=nullptr) const override; }; #endif |