summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-18 14:43:52 +0200
committerNoel Grandin <noel@peralex.com>2014-09-22 14:36:14 +0200
commit8e58d9d08caecc868b1f4fed78101c7bdb0834ab (patch)
tree91dd4ce3cd713c5fca3cc6bef62dd747441f6e56
parent04f43cd6a0159da29a0df4bf8e27387156f321e5 (diff)
loplugin: cstylecast
Change-Id: I8b1f0f6c100b4cf6d45c9e0c0f1e0a38ec081218
-rw-r--r--basegfx/source/inc/hommatrixtemplate.hxx4
-rw-r--r--basegfx/source/vector/b2dvector.cxx2
-rw-r--r--include/basegfx/color/bcolor.hxx2
-rw-r--r--include/basegfx/point/b2dpoint.hxx2
-rw-r--r--include/basegfx/point/b3dpoint.hxx2
-rw-r--r--include/basegfx/vector/b3dvector.hxx2
6 files changed, 7 insertions, 7 deletions
diff --git a/basegfx/source/inc/hommatrixtemplate.hxx b/basegfx/source/inc/hommatrixtemplate.hxx
index 93c14f2bd4db..2e1be87a8a68 100644
--- a/basegfx/source/inc/hommatrixtemplate.hxx
+++ b/basegfx/source/inc/hommatrixtemplate.hxx
@@ -100,8 +100,8 @@ namespace basegfx
}
// reset last line, it equals default
- delete ((ImplHomMatrixTemplate< RowSize >*)this)->mpLine;
- ((ImplHomMatrixTemplate< RowSize >*)this)->mpLine = 0L;
+ delete const_cast<ImplHomMatrixTemplate< RowSize >*>(this)->mpLine;
+ const_cast<ImplHomMatrixTemplate< RowSize >*>(this)->mpLine = 0L;
return true;
}
diff --git a/basegfx/source/vector/b2dvector.cxx b/basegfx/source/vector/b2dvector.cxx
index ace0a0a95320..2a08fab110fd 100644
--- a/basegfx/source/vector/b2dvector.cxx
+++ b/basegfx/source/vector/b2dvector.cxx
@@ -80,7 +80,7 @@ namespace basegfx
const B2DVector& B2DVector::getEmptyVector()
{
- return (const B2DVector&) B2DTuple::getEmptyTuple();
+ return static_cast<const B2DVector&>( B2DTuple::getEmptyTuple() );
}
B2DVector& B2DVector::operator*=( const B2DHomMatrix& rMat )
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() );
}
};