diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-04 11:55:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-11 11:21:23 +0200 |
commit | 22435a0777d6048757855f7f30b04fb8e5523fb2 (patch) | |
tree | 2a8e66dbfca50cfee05739cf799f94b00774340d /extensions/source/propctrlr/formcontroller.cxx | |
parent | 957f8e02c29bc4df2f37f2a933957490cdf831f6 (diff) |
remove unnecessary use of OUString constructor in EXTENSIONS module
Change-Id: Idf73eb831f52d4d74e6fbb6ea27f59ebbfd13a8c
Diffstat (limited to 'extensions/source/propctrlr/formcontroller.cxx')
-rw-r--r-- | extensions/source/propctrlr/formcontroller.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |