summaryrefslogtreecommitdiff
path: root/bridges/source/cpp_uno/gcc3_aix_powerpc/cpp2uno.cxx
diff options
context:
space:
mode:
authorRicardo Montania <ricardo@linuxafundo.com.br>2012-11-14 17:20:12 -0200
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-11-26 22:15:08 +0000
commit1d095efaf989730c298b2ad99720eacf68f71229 (patch)
tree3bc33bc08478ca90f5474da99746b209be52e025 /bridges/source/cpp_uno/gcc3_aix_powerpc/cpp2uno.cxx
parent7af306fb2508f01b91749542fd383acc0e675e34 (diff)
Some ::rtl::OUString -> OUString in bridges
Change-Id: I5412773f9cebc633a78ee5733b62f64b6d1599d4 Reviewed-on: https://gerrit.libreoffice.org/1068 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'bridges/source/cpp_uno/gcc3_aix_powerpc/cpp2uno.cxx')
-rw-r--r--bridges/source/cpp_uno/gcc3_aix_powerpc/cpp2uno.cxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/bridges/source/cpp_uno/gcc3_aix_powerpc/cpp2uno.cxx b/bridges/source/cpp_uno/gcc3_aix_powerpc/cpp2uno.cxx
index 58863ec63350..f60afae62102 100644
--- a/bridges/source/cpp_uno/gcc3_aix_powerpc/cpp2uno.cxx
+++ b/bridges/source/cpp_uno/gcc3_aix_powerpc/cpp2uno.cxx
@@ -337,9 +337,7 @@ static typelib_TypeClass cpp_mediate(
OSL_ENSURE( nFunctionIndex < pTypeDescr->nMapFunctionIndexToMemberIndex, "### illegal vtable index!" );
if (nFunctionIndex >= pTypeDescr->nMapFunctionIndexToMemberIndex)
{
- throw RuntimeException(
- rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "illegal vtable index!" )),
- (XInterface *)pThis );
+ throw RuntimeException( "illegal vtable index!", (XInterface *)pThis );
}
// determine called method
@@ -429,9 +427,7 @@ static typelib_TypeClass cpp_mediate(
}
default:
{
- throw RuntimeException(
- rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "no member description found!" )),
- (XInterface *)pThis );
+ throw RuntimeException( "no member description found!", (XInterface *)pThis );
}
}