summaryrefslogtreecommitdiff
path: root/extensions/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-06-21 12:52:29 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-06-21 13:43:11 +0200
commitb2a574ec54c7e34789b401a540ff14511bf583ce (patch)
tree9387442f88605f52777d2c36894842f25603160d /extensions/source
parent9cbb4052d11d8fc5b408cfe75ddb5305f9a7461b (diff)
simplify some getSupportedServiceNames
Change-Id: I81195505d6006b6587f7b98c1545919083f0e588 Reviewed-on: https://gerrit.libreoffice.org/74497 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions/source')
-rw-r--r--extensions/source/propctrlr/objectinspectormodel.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/extensions/source/propctrlr/objectinspectormodel.cxx b/extensions/source/propctrlr/objectinspectormodel.cxx
index f210b848df6a..794a6561298f 100644
--- a/extensions/source/propctrlr/objectinspectormodel.cxx
+++ b/extensions/source/propctrlr/objectinspectormodel.cxx
@@ -165,8 +165,7 @@ namespace pcr
Sequence< OUString > ObjectInspectorModel::getSupportedServiceNames_static( )
{
- OUString sService( "com.sun.star.inspection.ObjectInspectorModel" );
- return Sequence< OUString >( &sService, 1 );
+ return { "com.sun.star.inspection.ObjectInspectorModel" };
}