diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-07-30 17:56:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-07-31 12:59:19 +0200 |
commit | 4f2f0e64506b19b9fbca17a8810d313f6877805d (patch) | |
tree | 0b6fc6e4bf5c7b45776ac91d96529f1821d0d419 /editeng/qa | |
parent | bce25ad547cfa5539c0fa11c35f7f54c4fd75578 (diff) |
Improved loplugin:stringconstant (now that GCC 7 supports it): editeng
Change-Id: Id1ed8953803dde7ed0709d999ef8efe4eb055176
Reviewed-on: https://gerrit.libreoffice.org/76682
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'editeng/qa')
-rw-r--r-- | editeng/qa/unit/core-test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/qa/unit/core-test.cxx b/editeng/qa/unit/core-test.cxx index 151002ff71e5..e832dffd39d6 100644 --- a/editeng/qa/unit/core-test.cxx +++ b/editeng/qa/unit/core-test.cxx @@ -815,7 +815,7 @@ public: virtual OUString CalcFieldValue( const SvxFieldItem&, sal_Int32, sal_Int32, boost::optional<Color>&, boost::optional<Color>& ) override { - return OUString("jim@bob.com"); // a sophisticated view of value: + return "jim@bob.com"; // a sophisticated view of value: } }; |