From 22435a0777d6048757855f7f30b04fb8e5523fb2 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 4 Nov 2013 11:55:50 +0200 Subject: remove unnecessary use of OUString constructor in EXTENSIONS module Change-Id: Idf73eb831f52d4d74e6fbb6ea27f59ebbfd13a8c --- extensions/source/propctrlr/formcontroller.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'extensions/source/propctrlr/formcontroller.cxx') diff --git a/extensions/source/propctrlr/formcontroller.cxx b/extensions/source/propctrlr/formcontroller.cxx index 3a9c9ba19534..797542509d59 100644 --- a/extensions/source/propctrlr/formcontroller.cxx +++ b/extensions/source/propctrlr/formcontroller.cxx @@ -123,7 +123,7 @@ namespace pcr { Sequence< OUString > aSupported( m_aServiceDescriptor.GetSupportedServiceNames() ); aSupported.realloc( aSupported.getLength() + 1 ); - aSupported[ aSupported.getLength() - 1 ] = OUString( "com.sun.star.inspection.ObjectInspector" ); + aSupported[ aSupported.getLength() - 1 ] = "com.sun.star.inspection.ObjectInspector"; return aSupported; } @@ -137,7 +137,7 @@ namespace pcr Sequence< OUString > FormController::getSupportedServiceNames_static( ) throw(RuntimeException) { Sequence< OUString > aSupported(1); - aSupported[0] = OUString("com.sun.star.form.PropertyBrowserController"); + aSupported[0] = "com.sun.star.form.PropertyBrowserController"; return aSupported; } @@ -265,7 +265,7 @@ namespace pcr Sequence< OUString > DialogController::getSupportedServiceNames_static( ) throw(RuntimeException) { Sequence< OUString > aSupported(1); - aSupported[0] = OUString("com.sun.star.awt.PropertyBrowserController"); + aSupported[0] = "com.sun.star.awt.PropertyBrowserController"; return aSupported; } -- cgit