From 9b791f9c31165b82ec0fa3760a8af18c5af21294 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 26 May 2014 14:29:07 +0200 Subject: remove unnecessary use of OUString constructor when throwing Change-Id: I4a3f3f911dcfbf88696053215a2fb7a94678244c --- comphelper/source/streaming/seqinputstreamserv.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'comphelper/source/streaming') diff --git a/comphelper/source/streaming/seqinputstreamserv.cxx b/comphelper/source/streaming/seqinputstreamserv.cxx index ffc5136f804d..b5750d454b8f 100644 --- a/comphelper/source/streaming/seqinputstreamserv.cxx +++ b/comphelper/source/streaming/seqinputstreamserv.cxx @@ -207,7 +207,7 @@ void SAL_CALL SequenceInputStreamService::initialize( const uno::Sequence< ::com throw frame::DoubleInitializationException(); if ( aArguments.getLength() != 1 ) - throw lang::IllegalArgumentException( OUString("Wrong number of arguments!\n"), + throw lang::IllegalArgumentException( "Wrong number of arguments!", uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ), 1 ); @@ -223,7 +223,7 @@ void SAL_CALL SequenceInputStreamService::initialize( const uno::Sequence< ::com m_bInitialized = true; } else - throw lang::IllegalArgumentException( OUString("Unexpected type of argument!\n"), + throw lang::IllegalArgumentException( "Unexpected type of argument!", uno::Reference< uno::XInterface >( static_cast< ::cppu::OWeakObject* >(this) ), 1 ); } -- cgit