diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-03 16:01:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-06 05:59:56 +0000 |
commit | aadf790bbceb1cde94c2a6fe8edfb9951edca0a0 (patch) | |
tree | f48bea8591e2def6579c5095989ea425211a0063 /svtools/source/config/helpopt.cxx | |
parent | 6b58caf0597fed21c78fd806e5f2cef6fc43c502 (diff) |
remove some unnecessary use of OUString constructor
found with
git grep -nP '<<= OUString\(\w*[A-Za-z]+'
Change-Id: I43354842f1e0418fb292f2e8e0cb30f1229d1c67
Reviewed-on: https://gerrit.libreoffice.org/34864
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools/source/config/helpopt.cxx')
-rw-r--r-- | svtools/source/config/helpopt.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/config/helpopt.cxx b/svtools/source/config/helpopt.cxx index 3f34fa1ba25d..d3dc601493ee 100644 --- a/svtools/source/config/helpopt.cxx +++ b/svtools/source/config/helpopt.cxx @@ -235,14 +235,14 @@ void SvtHelpOptions_Impl::ImplCommit() break; case HelpProperty::Locale: - pValues[nProp] <<= OUString(aLocale); + pValues[nProp] <<= aLocale; break; case HelpProperty::System: - pValues[nProp] <<= OUString(aSystem); + pValues[nProp] <<= aSystem; break; case HelpProperty::StyleSheet: - pValues[nProp] <<= OUString(sHelpStyleSheet); + pValues[nProp] <<= sHelpStyleSheet; break; } |