From 62494ae01ee08132fd283f84313f55fb79026fe7 Mon Sep 17 00:00:00 2001 From: Andreas Bregas Date: Thu, 8 Aug 2002 08:08:15 +0000 Subject: #90353# delete -> delete[] --- stoc/source/inspect/introspection.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'stoc/source') diff --git a/stoc/source/inspect/introspection.cxx b/stoc/source/inspect/introspection.cxx index 4350ac2236b0..1bae2849482b 100644 --- a/stoc/source/inspect/introspection.cxx +++ b/stoc/source/inspect/introspection.cxx @@ -2,9 +2,9 @@ * * $RCSfile: introspection.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: dbo $ $Date: 2002-06-14 13:26:29 $ + * last change: $Author: ab $ $Date: 2002-08-08 09:08:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -315,7 +315,7 @@ public: IntrospectionAccessStatic_Impl( Reference< XIdlReflection > xCoreReflection_ ); ~IntrospectionAccessStatic_Impl() { - delete mpOrgPropertyHandleArray; + delete[] mpOrgPropertyHandleArray; } sal_Int32 getPropertyIndex( const OUString& aPropertyName ) const; sal_Int32 getMethodIndex( const OUString& aMethodName ) const; @@ -2904,7 +2904,7 @@ IntrospectionAccessStatic_Impl* ImplIntrospection::implInspect(const Any& aToIns if( bFoundXInterface ) bXInterfaceIsInvalid = sal_True; - delete pMethodTypes; + delete[] pMethodTypes; delete pLocalMethodConcepts; } -- cgit