From 701a09493e10ec232074abe02007a747abb474bd Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Fri, 26 Nov 2004 17:37:48 +0000 Subject: 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 --- basegfx/source/matrix/b2dhommatrix.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'basegfx/source/matrix') 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; } -- cgit