diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-10-01 09:57:59 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-10-01 13:19:04 +0200 |
commit | 664de5a816bdcb68ada087f99ef5a76139890fdf (patch) | |
tree | 30dca6260b95bf402930be3eb33766923182b1c1 /svl | |
parent | f88160d640b3efe4ffdf8126795a56d25d83944d (diff) |
loplugin:stringconstant (clang-cl)
Change-Id: Id1a82cea4444255fdb693e126b7571a406094624
Reviewed-on: https://gerrit.libreoffice.org/79916
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/svdde/ddesvr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/svdde/ddesvr.cxx b/svl/source/svdde/ddesvr.cxx index 4fffb473674e..8060cf0f4835 100644 --- a/svl/source/svdde/ddesvr.cxx +++ b/svl/source/svdde/ddesvr.cxx @@ -847,7 +847,7 @@ OUString DdeService::Formats() OUString DdeService::Status() { - return OUString("Ready\r\n"); + return "Ready\r\n"; } bool DdeTopic::MakeItem( const OUString& ) |