From e7bc3cab019fbf040f9fb8b53ae2cf3f977d200b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 23 May 2014 12:03:21 +0200 Subject: remove boilerplate in UNO Exception constructor calls Now that we have default values for Exception constructor params, remove lots of boilerplate code. Change-Id: I620bd641eecfed38e6123873b3b94aaf47922e74 --- bridges/source/cpp_uno/msvc_win32_intel/except.cxx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'bridges/source/cpp_uno/msvc_win32_intel') diff --git a/bridges/source/cpp_uno/msvc_win32_intel/except.cxx b/bridges/source/cpp_uno/msvc_win32_intel/except.cxx index 04f6d0b7ac7d..d5637e79cb37 100644 --- a/bridges/source/cpp_uno/msvc_win32_intel/except.cxx +++ b/bridges/source/cpp_uno/msvc_win32_intel/except.cxx @@ -539,8 +539,7 @@ int msci_filterCppException( buf.append( "\", RTTI-name=\"" ); buf.append( aRTTIname ); buf.append( "\"!" ); - RuntimeException exc( - buf.makeStringAndClear(), Reference< XInterface >() ); + RuntimeException exc( buf.makeStringAndClear() ); uno_type_any_constructAndConvert( pUnoExc, &exc, ::getCppuType( &exc ).getTypeLibType(), pCpp2Uno ); @@ -565,10 +564,8 @@ int msci_filterCppException( } // though this unknown exception leaks now, no user-defined exception // is ever thrown thru the binary C-UNO dispatcher call stack. - RuntimeException exc( - OUString( "[msci_uno bridge error] unexpected " - "C++ exception occurred!" ), - Reference< XInterface >() ); + RuntimeException exc( "[msci_uno bridge error] unexpected " + "C++ exception occurred!" ); uno_type_any_constructAndConvert( pUnoExc, &exc, ::getCppuType( &exc ).getTypeLibType(), pCpp2Uno ); return EXCEPTION_EXECUTE_HANDLER; -- cgit