From 0f9cfd542c9ca9987c13203cd46342c078e8f25e Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Fri, 11 Jul 2008 13:46:38 +0000 Subject: INTEGRATION: CWS jsc21 (1.16.94); FILE MERGED 2008/04/23 09:52:08 jsc 1.16.94.2: RESYNC: (1.16-1.17); FILE MERGED 2008/03/06 13:55:51 sb 1.16.94.1: #i81095# fixed name mangling --- bridges/source/cpp_uno/cc50_solaris_intel/except.cxx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/bridges/source/cpp_uno/cc50_solaris_intel/except.cxx b/bridges/source/cpp_uno/cc50_solaris_intel/except.cxx index 325b1e6627aa..66a0d62cd66c 100644 --- a/bridges/source/cpp_uno/cc50_solaris_intel/except.cxx +++ b/bridges/source/cpp_uno/cc50_solaris_intel/except.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: except.cxx,v $ - * $Revision: 1.17 $ + * $Revision: 1.18 $ * * This file is part of OpenOffice.org. * @@ -136,7 +136,14 @@ static OString toRTTImangledname( const OString & rRTTIname ) } else aRet.append( (sal_Char)( nBytes + 'A' ) ); - aRet.append( aToken ); + for (sal_Int32 i = 0; i < aToken.getLength(); ++i) { + char c = aToken[i]; + if (c == 'Q') { + aRet.append("QdD"); + } else { + aRet.append(c); + } + } } } while( nIndex != -1 ); -- cgit