diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-07-03 14:43:43 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-07-03 14:43:43 +0000 |
commit | 33a450b9e48166187d8d110d997a5b9bf3ece18c (patch) | |
tree | d6cc41e834be8d8493ae1adc3450d461de6720a3 /tools | |
parent | 04eb753b3ce8add888ccdada9a6deaf2961219f4 (diff) |
INTEGRATION: CWS dr54 (1.11.2); FILE MERGED
2007/06/11 11:31:31 dr 1.11.2.2: RESYNC: (1.11-1.13); FILE MERGED
2007/06/01 14:31:26 nn 1.11.2.1: #i63500# remove wrong address operator in UniString::intern
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/string/strucvt.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/source/string/strucvt.cxx b/tools/source/string/strucvt.cxx index c524304ee9a7..50021fe200ea 100644 --- a/tools/source/string/strucvt.cxx +++ b/tools/source/string/strucvt.cxx @@ -4,9 +4,9 @@ * * $RCSfile: strucvt.cxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: hr $ $Date: 2007-06-27 22:19:35 $ + * last change: $Author: rt $ $Date: 2007-07-03 15:43:43 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -171,7 +171,7 @@ UniString UniString::intern() const UniString aStr; rtl_uString_intern( reinterpret_cast<rtl_uString **>(&aStr.mpData), - (rtl_uString *)(&mpData) ); + (rtl_uString *)(mpData) ); return aStr; } |