From bf2373daf50595c02741f63d941fda0462535d62 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Tue, 26 Jul 2011 23:32:40 +0200 Subject: callcatcher: remove unused methods --- basegfx/inc/basegfx/matrix/b3dhommatrix.hxx | 3 --- basegfx/source/matrix/b3dhommatrix.cxx | 5 ----- 2 files changed, 8 deletions(-) (limited to 'basegfx') diff --git a/basegfx/inc/basegfx/matrix/b3dhommatrix.hxx b/basegfx/inc/basegfx/matrix/b3dhommatrix.hxx index a3eb8d311ec4..35b506f4022a 100644 --- a/basegfx/inc/basegfx/matrix/b3dhommatrix.hxx +++ b/basegfx/inc/basegfx/matrix/b3dhommatrix.hxx @@ -70,9 +70,6 @@ namespace basegfx /// Calc the matrix determinant double determinant() const; - /// Transpose the matrix - void transpose(); - /// Rotation void rotate(double fAngleX,double fAngleY,double fAngleZ); diff --git a/basegfx/source/matrix/b3dhommatrix.cxx b/basegfx/source/matrix/b3dhommatrix.cxx index 80a5024893b4..1c1952270e72 100644 --- a/basegfx/source/matrix/b3dhommatrix.cxx +++ b/basegfx/source/matrix/b3dhommatrix.cxx @@ -114,11 +114,6 @@ namespace basegfx return mpImpl->doDeterminant(); } - void B3DHomMatrix::transpose() - { - mpImpl->doTranspose(); - } - B3DHomMatrix& B3DHomMatrix::operator+=(const B3DHomMatrix& rMat) { mpImpl->doAddMatrix(*rMat.mpImpl); -- cgit