summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-07-11 13:46:49 +0000
committerRüdiger Timm <rt@openoffice.org>2008-07-11 13:46:49 +0000
commit70c7f13f6bf1bad5073dd91742282b49cb6ad52e (patch)
tree3d10440be13d86f11021e193ec6cac7587f4d90d /bridges
parent0f9cfd542c9ca9987c13203cd46342c078e8f25e (diff)
INTEGRATION: CWS jsc21 (1.16.94); FILE MERGED
2008/04/23 09:52:04 jsc 1.16.94.2: RESYNC: (1.16-1.17); FILE MERGED 2008/03/06 13:58:31 sb 1.16.94.1: #i81095# fixed name mangling
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/cpp_uno/cc50_solaris_sparc/except.cxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/bridges/source/cpp_uno/cc50_solaris_sparc/except.cxx b/bridges/source/cpp_uno/cc50_solaris_sparc/except.cxx
index 452d310f172b..26f501505f78 100644
--- a/bridges/source/cpp_uno/cc50_solaris_sparc/except.cxx
+++ b/bridges/source/cpp_uno/cc50_solaris_sparc/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.
*
@@ -138,7 +138,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 );