diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-04-03 12:57:13 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-04-03 12:57:13 +0000 |
commit | a0699eb0e832f56bdb31aa370b48b8248782dcc0 (patch) | |
tree | 054c7a029e56a13c5edd9e08b7a7a66bd9fe7038 /configmgr | |
parent | abaceb9b09969781333a0cfbf5bfcd2dd43ef2f5 (diff) |
INTEGRATION: CWS salstrintern (1.7.32); FILE MERGED
2007/02/08 17:33:15 mmeeks 1.7.32.2: fix for new signature.
2007/02/08 15:06:11 mmeeks 1.7.32.1: Issue number: i#74344#
Submitted by: mmeeks
undo custom & incomplete 'intern'ing code & use OUString::internConvert
instead for more speed, efficiency & savings.
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/backend/binaryreader.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configmgr/source/backend/binaryreader.cxx b/configmgr/source/backend/binaryreader.cxx index f6439a01fe63..72a6b7c4c2f2 100644 --- a/configmgr/source/backend/binaryreader.cxx +++ b/configmgr/source/backend/binaryreader.cxx @@ -1,12 +1,12 @@ /************************************************************************* -* + * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: binaryreader.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: obo $ $Date: 2006-09-16 15:02:54 $ + * last change: $Author: rt $ $Date: 2007-04-03 13:57:13 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -542,8 +542,8 @@ namespace configmgr rtl_TextEncoding const enc = bIsAscii ? RTL_TEXTENCODING_ASCII_US : RTL_TEXTENCODING_UTF8; - rtl_string2UString( &result.pData, pUTF, nStrLength, - enc, OSTRING_TO_OUSTRING_CVTFLAGS); + rtl_uString_internConvert(&result.pData, pUTF, nStrLength, enc, + OSTRING_TO_OUSTRING_CVTFLAGS, NULL); } return result; |