diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-06 09:23:33 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-09 08:34:40 +0000 |
commit | 6c80a8fe89fadf9a2c7260a09c037a09462f53d1 (patch) | |
tree | d36da9ee2a5fdc579d2a57ff6ba02deaddfa785a /svgio/source | |
parent | e1fc599eb764186e5d511ace9785463eebbc7028 (diff) |
new loplugin: oncevar
Change-Id: If57390510dde4d166be3141b9f658a7453755d3f
Reviewed-on: https://gerrit.libreoffice.org/19815
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svgio/source')
-rw-r--r-- | svgio/source/svguno/xsvgparser.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/svgio/source/svguno/xsvgparser.cxx b/svgio/source/svguno/xsvgparser.cxx index 7c6141308294..4c722a039171 100644 --- a/svgio/source/svguno/xsvgparser.cxx +++ b/svgio/source/svguno/xsvgparser.cxx @@ -70,9 +70,7 @@ namespace svgio { uno::Sequence< OUString > XSvgParser_getSupportedServiceNames() { - OUString aServiceName("com.sun.star.graphic.SvgTools" ); - uno::Sequence< OUString > aServiceNames( &aServiceName, 1 ); - return aServiceNames; + return uno::Sequence< OUString > { "com.sun.star.graphic.SvgTools" }; } OUString XSvgParser_getImplementationName() |