diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-07-30 17:52:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-07-31 12:56:18 +0200 |
commit | 315298ceffc43b05424e2e67ba702f692e41df48 (patch) | |
tree | 8ff592ad04dae42642706a42d74522c5f2e07e6a /remotebridges | |
parent | 9b55b5d5f99ebbde75b203605e8ec191da67f8c9 (diff) |
Improved loplugin:stringconstant (now that GCC 7 supports it): remotebridges
Change-Id: Iaa023a81be7b28079fbbbf593f6a5757daf70495
Reviewed-on: https://gerrit.libreoffice.org/76658
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'remotebridges')
-rw-r--r-- | remotebridges/source/unourl_resolver/unourl_resolver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remotebridges/source/unourl_resolver/unourl_resolver.cxx b/remotebridges/source/unourl_resolver/unourl_resolver.cxx index 18b74f76b2ba..eb94a0706c35 100644 --- a/remotebridges/source/unourl_resolver/unourl_resolver.cxx +++ b/remotebridges/source/unourl_resolver/unourl_resolver.cxx @@ -52,7 +52,7 @@ static Sequence< OUString > resolver_getSupportedServiceNames() static OUString resolver_getImplementationName() { - return OUString(IMPLNAME); + return IMPLNAME; } class ResolverImpl : public WeakImplHelper< XServiceInfo, XUnoUrlResolver > |