From b5db48ada113206ac090e4a08f2ae211859103ed Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sat, 31 Oct 2015 15:13:58 +0200 Subject: no need to use OUString constructor in call to createInstance Change-Id: Iaf3d83ba1490cb1d97a5bd4d1f7cd6943d4a7296 Reviewed-on: https://gerrit.libreoffice.org/19704 Tested-by: Jenkins Reviewed-by: Noel Grandin --- ucbhelper/source/client/proxydecider.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ucbhelper/source') diff --git a/ucbhelper/source/client/proxydecider.cxx b/ucbhelper/source/client/proxydecider.cxx index eb200c8f5e95..49fa8ed2cae4 100644 --- a/ucbhelper/source/client/proxydecider.cxx +++ b/ucbhelper/source/client/proxydecider.cxx @@ -313,9 +313,8 @@ InternetProxyDecider_Impl::InternetProxyDecider_Impl( uno::Reference< uno::XInterface > xInterface( xConfigProv->createInstanceWithArguments( - OUString( - "com.sun.star.configuration.ConfigurationAccess" ), - aArguments ) ); + "com.sun.star.configuration.ConfigurationAccess", + aArguments ) ); OSL_ENSURE( xInterface.is(), "InternetProxyDecider - No config access!" ); -- cgit