summaryrefslogtreecommitdiff
path: root/framework/source/fwi
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-07-30 17:54:30 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-07-31 12:58:15 +0200
commit1c099989523fa1d969a44cc99a2478df35537a2d (patch)
tree049768012d98e84e464a16e1bb36c4bf82dd1525 /framework/source/fwi
parent421fcc61bf2d1a5dca5bd5499f713d67e1a4a0df (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/fwi')
-rw-r--r--framework/source/fwi/jobs/jobconst.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/fwi/jobs/jobconst.cxx b/framework/source/fwi/jobs/jobconst.cxx
index 5afd5dd8e101..1d84ce134124 100644
--- a/framework/source/fwi/jobs/jobconst.cxx
+++ b/framework/source/fwi/jobs/jobconst.cxx
@@ -23,17 +23,17 @@ namespace framework{
const OUString JobConst::ANSWER_DEACTIVATE_JOB()
{
- return OUString("Deactivate");
+ return "Deactivate";
}
const OUString JobConst::ANSWER_SAVE_ARGUMENTS()
{
- return OUString("SaveArguments");
+ return "SaveArguments";
}
const OUString JobConst::ANSWER_SEND_DISPATCHRESULT()
{
- return OUString("SendDispatchResult");
+ return "SendDispatchResult";
}
} // namespace framework