From 610b2b94b33b0fc2d79cd515f9e293ca1c2610e8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 15 Nov 2013 11:05:19 +0200 Subject: remove unnecessary use of OUString constructor when assigning change code like aStr = OUString("xxxx"); to aStr = "xxxx"; Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4 --- uui/source/iahndl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'uui/source/iahndl.cxx') diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx index 6f1373a7a480..8850d920639f 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -947,7 +947,7 @@ UUIInteractionHelper::getInteractionHandlerList( uno::Sequence< uno::Any > aArguments( 1 ); beans::PropertyValue aProperty; - aProperty.Name = OUString( "nodepath" ); + aProperty.Name = "nodepath"; aProperty.Value <<= aFullPath.makeStringAndClear(); aArguments[ 0 ] <<= aProperty; -- cgit