diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-08 16:26:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-08 16:26:48 +0200 |
commit | 17a5b0f6ed885f1e638b5265f13f96a9c234efcf (patch) | |
tree | dfe795df26cecf2499b56654ba54ca5aa19ea470 /oox/source/ppt/pptshapegroupcontext.cxx | |
parent | b17d8a19e0880713f8e5ebbe36e38dffc3899758 (diff) |
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: Ia702fa56c6ed17b26817e1c0d1720cb26199a6da
Diffstat (limited to 'oox/source/ppt/pptshapegroupcontext.cxx')
-rw-r--r-- | oox/source/ppt/pptshapegroupcontext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/ppt/pptshapegroupcontext.cxx b/oox/source/ppt/pptshapegroupcontext.cxx index 05044caa23b0..3b3d20cfc649 100644 --- a/oox/source/ppt/pptshapegroupcontext.cxx +++ b/oox/source/ppt/pptshapegroupcontext.cxx @@ -56,7 +56,7 @@ PPTShapeGroupContext::PPTShapeGroupContext( : ShapeGroupContext( rParent, pMasterShapePtr, pGroupShapePtr ) , mpSlidePersistPtr( rSlidePersistPtr ) , meShapeLocation( eShapeLocation ) -, pGraphicShape( (PPTShape *)NULL ) +, pGraphicShape( nullptr ) { } @@ -136,7 +136,7 @@ void PPTShapeGroupContext::importExtDrawings( ) if( pGraphicShape->getFontRefColorForNodes().isUsed() ) applyFontRefColor(mpGroupShapePtr, pGraphicShape->getFontRefColorForNodes()); } - pGraphicShape = oox::drawingml::ShapePtr( (PPTShape *)NULL ); + pGraphicShape = oox::drawingml::ShapePtr( nullptr ); } } |