summaryrefslogtreecommitdiffstats
path: root/forms/source/runtime
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-25 17:17:50 +0200
committerNoel Grandin <noel@peralex.com>2013-11-04 10:11:07 +0200
commitaeb41c9b9b7559c6d87bf92807acdc0df9e104cc (patch)
tree5a36bcd5af873c2b597fcda5fbd7e2f76f997669 /forms/source/runtime
parentWaE: unused variables (diff)
downloadcore-aeb41c9b9b7559c6d87bf92807acdc0df9e104cc.tar.gz
core-aeb41c9b9b7559c6d87bf92807acdc0df9e104cc.zip
remove redundant calls to OUString constructor
Change code like this: aStr = OUString("xxxx"); into this: aStr = "xxxx"; Change-Id: I31cb92e21658d57bb9e14b65c179536eae8096f6
Diffstat (limited to 'forms/source/runtime')
-rw-r--r--forms/source/runtime/formoperations.cxx2
1 files changed, 1 insertions, 1 deletions
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;