summaryrefslogtreecommitdiff
path: root/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx')
-rw-r--r--bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
index cb3134c74fa5..26688aa29d96 100644
--- a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
+++ b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
@@ -273,7 +273,7 @@ static inline OUString toUNOname(
aRet.append( aStr.copy( n +1, nPos -n -1 ) );
if (n >= 0)
{
- aRet.append( (sal_Unicode)'.' );
+ aRet.append( '.' );
}
nPos = n;
}
@@ -291,10 +291,10 @@ static inline OUString toRTTIname(
{
sal_Int32 n = rUNOname.lastIndexOf( '.', nPos );
aRet.append( rUNOname.copy( n +1, nPos -n -1 ) );
- aRet.append( (sal_Unicode)'@' );
+ aRet.append( '@' );
nPos = n;
}
- aRet.append( (sal_Unicode)'@' );
+ aRet.append( '@' );
return aRet.makeStringAndClear();
}