summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-07-11 13:46:38 +0000
committerRüdiger Timm <rt@openoffice.org>2008-07-11 13:46:38 +0000
commit0f9cfd542c9ca9987c13203cd46342c078e8f25e (patch)
treef34b5566233fcd6b49565a5814f0da1ac88351d8 /bridges
parent5289c32822c73d0892c3a3478421604e7f0ddb4c (diff)
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
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_intel/except.cxx11
1 files 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 );