diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2022-07-21 18:51:02 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-07-22 11:13:45 +0200 |
commit | 42572c6d0d1f1c84b3774f6c790e28e8abc7b45a (patch) | |
tree | 1a831ccd9363c89292f96dc7554a0cfa5ca7141c /unotools | |
parent | aa2067dda63852b0eb84d5c32497f5a28177bb1c (diff) |
elide some makeStringAndClear() calls
Change-Id: I3b7ae370b41638c0a67374d5132b7bdf56e7c672
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137311
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/i18n/localedatawrapper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/i18n/localedatawrapper.cxx b/unotools/source/i18n/localedatawrapper.cxx index 55cde4a360a4..220d850885cb 100644 --- a/unotools/source/i18n/localedatawrapper.cxx +++ b/unotools/source/i18n/localedatawrapper.cxx @@ -353,7 +353,7 @@ const std::vector< LanguageType >& LocaleDataWrapper::getInstalledLanguageTypes( aMsg.append(static_cast<sal_Int32>(static_cast<sal_uInt16>(eLang)), 16); aMsg.append(" -> "); aMsg.append(aBackLanguageTag.getBcp47()); - outputCheckMessage( aMsg.makeStringAndClear() ); + outputCheckMessage( aMsg ); } eLang = LANGUAGE_DONTKNOW; } |