diff options
author | Noel Grandin <noel@peralex.com> | 2014-09-18 14:43:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-09-22 14:36:14 +0200 |
commit | 8e58d9d08caecc868b1f4fed78101c7bdb0834ab (patch) | |
tree | 91dd4ce3cd713c5fca3cc6bef62dd747441f6e56 /include | |
parent | 04f43cd6a0159da29a0df4bf8e27387156f321e5 (diff) |
loplugin: cstylecast
Change-Id: I8b1f0f6c100b4cf6d45c9e0c0f1e0a38ec081218
Diffstat (limited to 'include')
-rw-r--r-- | include/basegfx/color/bcolor.hxx | 2 | ||||
-rw-r--r-- | include/basegfx/point/b2dpoint.hxx | 2 | ||||
-rw-r--r-- | include/basegfx/point/b3dpoint.hxx | 2 | ||||
-rw-r--r-- | include/basegfx/vector/b3dvector.hxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/include/basegfx/color/bcolor.hxx b/include/basegfx/color/bcolor.hxx index 457409b2cfde..2428b19b521b 100644 --- a/include/basegfx/color/bcolor.hxx +++ b/include/basegfx/color/bcolor.hxx @@ -208,7 +208,7 @@ namespace basegfx static const BColor& getEmptyBColor() { - return (const BColor&) ::basegfx::B3DTuple::getEmptyTuple(); + return static_cast<const BColor&>( ::basegfx::B3DTuple::getEmptyTuple() ); } com::sun::star::uno::Sequence< double > colorToDoubleSequence(const com::sun::star::uno::Reference< com::sun::star::rendering::XGraphicDevice >& /*xGraphicDevice*/) const diff --git a/include/basegfx/point/b2dpoint.hxx b/include/basegfx/point/b2dpoint.hxx index cee2170503e9..9c5e35a69271 100644 --- a/include/basegfx/point/b2dpoint.hxx +++ b/include/basegfx/point/b2dpoint.hxx @@ -124,7 +124,7 @@ namespace basegfx static const B2DPoint& getEmptyPoint() { - return (const B2DPoint&) ::basegfx::B2DTuple::getEmptyTuple(); + return static_cast<const B2DPoint&>( ::basegfx::B2DTuple::getEmptyTuple() ); } }; diff --git a/include/basegfx/point/b3dpoint.hxx b/include/basegfx/point/b3dpoint.hxx index bd45342344e7..7484c7ddec1d 100644 --- a/include/basegfx/point/b3dpoint.hxx +++ b/include/basegfx/point/b3dpoint.hxx @@ -124,7 +124,7 @@ namespace basegfx static const B3DPoint& getEmptyPoint() { - return (const B3DPoint&) ::basegfx::B3DTuple::getEmptyTuple(); + return static_cast<const B3DPoint&>( ::basegfx::B3DTuple::getEmptyTuple() ); } }; diff --git a/include/basegfx/vector/b3dvector.hxx b/include/basegfx/vector/b3dvector.hxx index a3adbefccf8e..d7e5229b130b 100644 --- a/include/basegfx/vector/b3dvector.hxx +++ b/include/basegfx/vector/b3dvector.hxx @@ -249,7 +249,7 @@ namespace basegfx static const B3DVector& getEmptyVector() { - return (const B3DVector&) ::basegfx::B3DTuple::getEmptyTuple(); + return static_cast<const B3DVector&>( ::basegfx::B3DTuple::getEmptyTuple() ); } }; |