diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-01-11 10:17:44 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-01-11 10:17:44 +0000 |
commit | d91a1f3f01a68b8009918ff2b053392c29d6a8ab (patch) | |
tree | 067fe03b2b45fb0315a18e109d59258643b96dd2 /i18nutil | |
parent | 78485242e4fbed90a0ee92517e54a9103ba4d121 (diff) |
INTEGRATION: CWS i18n15 (1.2.80); FILE MERGED
2004/08/30 21:03:34 khong 1.2.80.1: #i33105# fixed a operator delete mismatch problem
Diffstat (limited to 'i18nutil')
-rw-r--r-- | i18nutil/source/utility/oneToOneMapping.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/i18nutil/source/utility/oneToOneMapping.cxx b/i18nutil/source/utility/oneToOneMapping.cxx index d3629faece8e..00453c2a7413 100644 --- a/i18nutil/source/utility/oneToOneMapping.cxx +++ b/i18nutil/source/utility/oneToOneMapping.cxx @@ -2,9 +2,9 @@ * * $RCSfile: oneToOneMapping.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2003-04-24 12:26:03 $ + * last change: $Author: obo $ $Date: 2005-01-11 11:17:44 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -75,7 +75,7 @@ oneToOneMapping::~oneToOneMapping() if( hasIndex ) for (int i = 0; i < 256; i++) if (index[i]) - delete index[i]; + delete [] index[i]; } sal_Unicode oneToOneMapping::find(const sal_Unicode key) const |