summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-06-12 09:49:52 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-06-12 09:49:52 +0000
commit858d35b5fb1bf5953556b924a5c8e7a078458030 (patch)
tree0e6a57c8269389c1429c1f9f7546be233f190bca /i18npool
parent591e2fc5590476c4d1402e6b4c90802a990cbaf0 (diff)
INTEGRATION: CWS mh11rc (1.7.14); FILE MERGED
2003/06/06 08:19:41 mh 1.7.14.1: join: from beta2
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/source/transliteration/transliteration_caseignore.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/i18npool/source/transliteration/transliteration_caseignore.cxx b/i18npool/source/transliteration/transliteration_caseignore.cxx
index 9b5a60e4c65a..54aadace921c 100644
--- a/i18npool/source/transliteration/transliteration_caseignore.cxx
+++ b/i18npool/source/transliteration/transliteration_caseignore.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: transliteration_caseignore.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2003-04-28 16:54:32 $
+ * last change: $Author: vg $ $Date: 2003-06-12 10:49:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -122,12 +122,12 @@ Transliteration_caseignore::transliterateRange( const OUString& str1, const OUSt
OUString u2 = l2u.transliterateString2String(str2, 0, str2.getLength());
if ((l1 == u1) && (l2 == u2)) {
- Sequence< OUString > &r = *new Sequence< OUString > (2);
+ Sequence< OUString > r(2);
r[0] = l1;
r[1] = l2;
return r;
} else {
- Sequence< OUString > &r = *new Sequence< OUString > (4);
+ Sequence< OUString > r(4);
r[0] = l1;
r[1] = l2;
r[2] = u1;