Kaydet (Commit) 6e67ad64 authored tarafından Ricardo Montania's avatar Ricardo Montania Kaydeden (comit) Tor Lillqvist

rtl::OUString -> OUString in bridges

Change-Id: I292f2007771ab12a30de6cd5a6a1ed436adcff66
Reviewed-on: https://gerrit.libreoffice.org/1057Reviewed-by: 's avatarTor Lillqvist <tml@iki.fi>
Tested-by: 's avatarTor Lillqvist <tml@iki.fi>
üst bae7ec75
......@@ -249,7 +249,7 @@ extern "C" void cpp_vtable_call(
"### 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
......@@ -338,7 +338,7 @@ extern "C" void cpp_vtable_call(
}
default:
{
throw RuntimeException( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "no member description found!" )), (XInterface *)pThis );
throw RuntimeException( "no member description found!", (XInterface *)pThis );
}
}
}
......
......@@ -48,11 +48,7 @@
#include <hash.cxx>
// need a += operator for OString and sal_Char
using ::rtl::OUString;
using ::rtl::OString;
using ::rtl::OStringBuffer;
using ::rtl::OUStringToOString;
using ::rtl::OStringToOUString;
{
inline OString& operator+=( OString& rString, sal_Char cAdd )
{
......@@ -423,7 +419,7 @@ void cc50_solaris_intel_fillUnoException(
#if OSL_DEBUG_LEVEL > 1
fprintf( stderr, "> c++ exception occurred: %s\n",
::rtl::OUStringToOString(
OUStringToOString(
pExcTypeDescr->pTypeName,
RTL_TEXTENCODING_ASCII_US ).getStr() );
#endif
......
......@@ -42,8 +42,6 @@
using namespace com::sun::star::uno;
using ::rtl::OUString;
namespace
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment