diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-07-18 14:03:29 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-07-18 14:03:29 +0000 |
commit | 9a060bcf40ffa84f79f02ac9ac0a2e30b7bcf8dc (patch) | |
tree | 93cf0b5b7331261cd1f632f051e8c11b80b4a700 /xml2cmp | |
parent | 1d66ca392a5d4a02a4ba715e7e0b645316ab012c (diff) |
INTEGRATION: CWS mh23 (1.9.20); FILE MERGED
2007/07/12 13:01:45 mh 1.9.20.1: xml2cmp: the List allocs but never deletes it, #i79210#
Diffstat (limited to 'xml2cmp')
-rw-r--r-- | xml2cmp/source/support/list.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xml2cmp/source/support/list.hxx b/xml2cmp/source/support/list.hxx index ecb4d25481f4..d95df01afed6 100644 --- a/xml2cmp/source/support/list.hxx +++ b/xml2cmp/source/support/list.hxx @@ -4,9 +4,9 @@ * * $RCSfile: list.hxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: hr $ $Date: 2006-06-19 20:04:23 $ + * last change: $Author: obo $ $Date: 2007-07-18 15:03:29 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -49,7 +49,7 @@ class List // LIFECYCLE List(); - virtual ~List() { } + virtual ~List() { delete [] inhalt; } // OPERATORS const XX & operator[]( |