summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-11-26 17:37:48 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-11-26 17:37:48 +0000
commit701a09493e10ec232074abe02007a747abb474bd (patch)
treecb645403de432ee724b6d9f7a8cf7cce5cd133ae /basegfx
parente1fca8ac0c9916f4150a37b70947b1e866544ead (diff)
INTEGRATION: CWS presentationengine01 (1.7.2); FILE MERGED
2004/11/12 22:20:11 thb 1.7.2.1: #102922# Fixed array new/delete mismatch
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/matrix/b2dhommatrix.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basegfx/source/matrix/b2dhommatrix.cxx b/basegfx/source/matrix/b2dhommatrix.cxx
index ee4c43a785be..1f1894036a08 100644
--- a/basegfx/source/matrix/b2dhommatrix.cxx
+++ b/basegfx/source/matrix/b2dhommatrix.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dhommatrix.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: thb $ $Date: 2004-01-16 10:34:29 $
+ * last change: $Author: rt $ $Date: 2004-11-26 18:37:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -178,12 +178,12 @@ namespace basegfx
{
implPrepareChange();
mpM->doInvert(aWork, pIndex);
- delete pIndex;
+ delete[] pIndex;
return true;
}
- delete pIndex;
+ delete[] pIndex;
return false;
}