summaryrefslogtreecommitdiff
path: root/oox/source/vml
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-02-08 13:19:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-02-09 17:07:45 +0100
commit82b91027691a0a7138c0f70b94d6500e35bb8b44 (patch)
tree1f1947f79c3f0f7127814b317e398cea1333206e /oox/source/vml
parent2ae813975ae8ba97e2adbce13be272e6902ca7b5 (diff)
loplugin:indentation in oox..package
Change-Id: Ie50a1ad6e27786ccdaae2ba1ae96f5682c4a38f6 Reviewed-on: https://gerrit.libreoffice.org/67560 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox/source/vml')
-rw-r--r--oox/source/vml/vmlshapecontainer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/vml/vmlshapecontainer.cxx b/oox/source/vml/vmlshapecontainer.cxx
index 474c6ac2c86f..e8008a1f4638 100644
--- a/oox/source/vml/vmlshapecontainer.cxx
+++ b/oox/source/vml/vmlshapecontainer.cxx
@@ -86,7 +86,7 @@ const ShapeType* ShapeContainer::getShapeTypeById( const OUString& rShapeId ) co
for (auto const& shape : maShapes)
if( const ShapeType* pType = shape->getChildTypeById( rShapeId ) )
return pType;
- return nullptr;
+ return nullptr;
}
const ShapeBase* ShapeContainer::getShapeById( const OUString& rShapeId ) const
@@ -98,7 +98,7 @@ const ShapeBase* ShapeContainer::getShapeById( const OUString& rShapeId ) const
for (auto const& shape : maShapes)
if( const ShapeBase* pShape = shape->getChildById( rShapeId ) )
return pShape;
- return nullptr;
+ return nullptr;
}
std::shared_ptr< ShapeBase > ShapeContainer::takeLastShape()