diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-11-19 13:21:56 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-11-19 17:30:10 +0100 |
commit | 85c25ec9f198e9c335cb6f622acdab67a9c41f71 (patch) | |
tree | 20d69974e6df88d60952e70bf481487ed9280449 /xmlhelp/source | |
parent | 79e8a54893c4a95d732388326eecd1ad151017d9 (diff) |
Extended loplugin:ostr: xmlhelp
Change-Id: I8be963a7a2befe95ce30027c3298e1a41b217d0b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159663
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'xmlhelp/source')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/urlparameter.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx index 8859970980b9..345693b2e7c8 100644 --- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx +++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx @@ -770,11 +770,11 @@ InputStreamTransformer::InputStreamTransformer( URLParameter* urlParam, parString[last++] = "'css'"; parString[last++] = "vendorname"; - parString[last++] = OString("''"); + parString[last++] = "''"_ostr; parString[last++] = "vendorversion"; - parString[last++] = OString("''"); + parString[last++] = "''"_ostr; parString[last++] = "vendorshort"; - parString[last++] = OString("''"); + parString[last++] = "''"_ostr; } // Do we need to add extension path? |