From aeb41c9b9b7559c6d87bf92807acdc0df9e104cc Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 25 Oct 2013 17:17:50 +0200 Subject: remove redundant calls to OUString constructor Change code like this: aStr = OUString("xxxx"); into this: aStr = "xxxx"; Change-Id: I31cb92e21658d57bb9e14b65c179536eae8096f6 --- forms/source/runtime/formoperations.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'forms/source/runtime') diff --git a/forms/source/runtime/formoperations.cxx b/forms/source/runtime/formoperations.cxx index e1b8acbe1cba..c8109ed06c6f 100644 --- a/forms/source/runtime/formoperations.cxx +++ b/forms/source/runtime/formoperations.cxx @@ -395,7 +395,7 @@ namespace frm OUString sValue = OUString::number( nCount ); if ( !bFinalCount ) - sValue += OUString(" *"); + sValue += " *"; aState.State <<= sValue; aState.Enabled = sal_True; -- cgit