diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-07-30 17:54:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-07-31 12:58:15 +0200 |
commit | 1c099989523fa1d969a44cc99a2478df35537a2d (patch) | |
tree | 049768012d98e84e464a16e1bb36c4bf82dd1525 /framework/source/jobs | |
parent | 421fcc61bf2d1a5dca5bd5499f713d67e1a4a0df (diff) |
Improved loplugin:stringconstant (now that GCC 7 supports it): framework
Change-Id: Ia6eef000a712c9f23f81eaf6d27f5a236da9b24d
Reviewed-on: https://gerrit.libreoffice.org/76673
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'framework/source/jobs')
-rw-r--r-- | framework/source/jobs/jobdispatch.cxx | 2 | ||||
-rw-r--r-- | framework/source/jobs/jobexecutor.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/jobs/jobdispatch.cxx b/framework/source/jobs/jobdispatch.cxx index 59ba3a0ec2b4..0407f05591d3 100644 --- a/framework/source/jobs/jobdispatch.cxx +++ b/framework/source/jobs/jobdispatch.cxx @@ -92,7 +92,7 @@ public: public: virtual OUString SAL_CALL getImplementationName() override { - return OUString("com.sun.star.comp.framework.jobs.JobDispatch"); + return "com.sun.star.comp.framework.jobs.JobDispatch"; } virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override diff --git a/framework/source/jobs/jobexecutor.cxx b/framework/source/jobs/jobexecutor.cxx index 6e54d7375f43..1dbd7a9428c7 100644 --- a/framework/source/jobs/jobexecutor.cxx +++ b/framework/source/jobs/jobexecutor.cxx @@ -88,7 +88,7 @@ public: virtual OUString SAL_CALL getImplementationName() override { - return OUString("com.sun.star.comp.framework.JobExecutor"); + return "com.sun.star.comp.framework.JobExecutor"; } virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override |