diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:20:17 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:32 +0100 |
commit | 8d12f43bb3668f4fdfcef0bd149d8b023e312e18 (patch) | |
tree | 989292510ee579777678940fcb5c93d75c3925dd /include/oox/vml | |
parent | 1ddbbfdda834965c861a67e275ab58ff4d1f0bf9 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I62a20b440064aca6f102e61cb3984bb95e739a4f
Diffstat (limited to 'include/oox/vml')
-rw-r--r-- | include/oox/vml/vmlshape.hxx | 4 | ||||
-rw-r--r-- | include/oox/vml/vmlshapecontainer.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/oox/vml/vmlshape.hxx b/include/oox/vml/vmlshape.hxx index 7ccead9ad043..5c955dc171be 100644 --- a/include/oox/vml/vmlshape.hxx +++ b/include/oox/vml/vmlshape.hxx @@ -249,12 +249,12 @@ public: css::uno::Reference< css::drawing::XShape > convertAndInsert( const css::uno::Reference< css::drawing::XShapes >& rxShapes, - const ShapeParentAnchor* pParentAnchor = 0 ) const; + const ShapeParentAnchor* pParentAnchor = nullptr ) const; /** Converts position and formatting into the passed existing XShape. */ void convertFormatting( const css::uno::Reference< css::drawing::XShape >& rxShape, - const ShapeParentAnchor* pParentAnchor = 0 ) const; + const ShapeParentAnchor* pParentAnchor = nullptr ) const; protected: explicit ShapeBase( Drawing& rDrawing ); diff --git a/include/oox/vml/vmlshapecontainer.hxx b/include/oox/vml/vmlshapecontainer.hxx index cea21146d36c..b843c4d73f00 100644 --- a/include/oox/vml/vmlshapecontainer.hxx +++ b/include/oox/vml/vmlshapecontainer.hxx @@ -101,7 +101,7 @@ public: /** Creates and inserts all UNO shapes into the passed container. */ void convertAndInsert( const css::uno::Reference< css::drawing::XShapes >& rxShapes, - const ShapeParentAnchor* pParentAnchor = 0 ) const; + const ShapeParentAnchor* pParentAnchor = nullptr ) const; private: typedef RefVector< ShapeType > ShapeTypeVector; |