summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-07-26 23:32:40 +0200
committerThomas Arnhold <thomas@arnhold.org>2011-07-26 23:39:04 +0200
commitbf2373daf50595c02741f63d941fda0462535d62 (patch)
tree8648bb9d6328a43d5c1e52ca2169097ada413251 /basegfx
parentbb4b28f3642e6fd86881c0fd4c030b5872cde7fa (diff)
callcatcher: remove unused methods
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/inc/basegfx/matrix/b3dhommatrix.hxx3
-rw-r--r--basegfx/source/matrix/b3dhommatrix.cxx5
2 files changed, 0 insertions, 8 deletions
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);