Kaydet (Commit) b4a73f9d authored tarafından Stephan Bergmann's avatar Stephan Bergmann

bridges: Use appropriate OUString functions on string constants

Change-Id: I95ec7503ab7cf0309427118cc5af95eba4f5785b
üst c13a1c2e
......@@ -288,7 +288,7 @@ void raiseException( uno_Any * pUnoExc, uno_Mapping * pUno2Cpp )
if (! pTypeDescr)
{
throw RuntimeException(
OUString("cannot get typedescription for type ") +
"cannot get typedescription for type " +
*reinterpret_cast< OUString const * >( &pUnoExc->pType->pTypeName ) );
}
......@@ -318,7 +318,7 @@ void raiseException( uno_Any * pUnoExc, uno_Mapping * pUno2Cpp )
if (! rtti)
{
throw RuntimeException(
OUString("no rtti for type ") +
"no rtti for type " +
*reinterpret_cast< OUString const * >( &pUnoExc->pType->pTypeName ) );
}
}
......@@ -346,7 +346,7 @@ void fillUnoException( __cxa_exception * header, uno_Any * pUnoExc, uno_Mapping
typelib_typedescription_getByName( &pExcTypeDescr, unoName.pData );
if (0 == pExcTypeDescr)
{
RuntimeException aRE( OUString("exception type not found: ") + unoName );
RuntimeException aRE( "exception type not found: " + unoName );
Type const & rType = ::getCppuType( &aRE );
uno_type_any_constructAndConvert( pUnoExc, &aRE, rType.getTypeLibType(), pCpp2Uno );
SAL_WARN("bridges", aRE.Message);
......
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