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
This commit is contained in:
Rüdiger Timm
2007-07-03 14:43:43 +00:00
parent 04eb753b3c
commit 33a450b9e4

View File

@@ -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;
}