diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-07-30 17:45:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-07-31 12:52:33 +0200 |
commit | 7680623292f272cf1a8cceb4abb5a67bb5469918 (patch) | |
tree | 9c07a62ce919f9f64d78fc7d60040a3925b5f019 /vcl/source/components/fontident.cxx | |
parent | 8b9f2959419a382fec85cdc25b8c49f59b6d85fc (diff) |
Improved loplugin:stringconstant (now that GCC 7 supports it): vcl
Change-Id: I0bd1d26f6fc4052b812fde33ebd1d63111426942
Reviewed-on: https://gerrit.libreoffice.org/76627
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/source/components/fontident.cxx')
-rw-r--r-- | vcl/source/components/fontident.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/components/fontident.cxx b/vcl/source/components/fontident.cxx index e6d5202ef80e..2da25d18eb63 100644 --- a/vcl/source/components/fontident.cxx +++ b/vcl/source/components/fontident.cxx @@ -151,7 +151,7 @@ Sequence< OUString > FontIdentificator_getSupportedServiceNames() OUString FontIdentificator_getImplementationName() { - return OUString( "vcl::FontIdentificator" ); + return "vcl::FontIdentificator"; } Reference< XInterface > FontIdentificator_createInstance( const Reference< XMultiServiceFactory >& ) |