From e50ef195bc95f3f410119f623928382cb88b45d2 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 1 Jul 2014 15:45:52 +0200 Subject: New loplugin:stringconcat Change-Id: Id7c517fb37bc28797c45fc0dde83e866f2aa4aac --- i18nlangtag/source/languagetag/languagetag.cxx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'i18nlangtag') diff --git a/i18nlangtag/source/languagetag/languagetag.cxx b/i18nlangtag/source/languagetag/languagetag.cxx index c81197a31039..25b672388a2f 100644 --- a/i18nlangtag/source/languagetag/languagetag.cxx +++ b/i18nlangtag/source/languagetag/languagetag.cxx @@ -871,13 +871,11 @@ LanguageTag::ImplPtr LanguageTag::registerImpl() const theMapBcp47::get().insert( ::std::make_pair( pImpl->maBcp47, pImpl))); if (res.second) { - SAL_INFO( "i18nlangtag", "LanguageTag::registerImpl: cross-inserted '" << pImpl->maBcp47 << "'" - << " for 0x" << ::std::hex << mnLangID); + SAL_INFO( "i18nlangtag", "LanguageTag::registerImpl: cross-inserted '" << pImpl->maBcp47 << "' for 0x" << ::std::hex << mnLangID); } else { - SAL_INFO( "i18nlangtag", "LanguageTag::registerImpl: not cross-inserted '" << pImpl->maBcp47 << "'" - << " for 0x" << ::std::hex << mnLangID << " have 0x" + SAL_INFO( "i18nlangtag", "LanguageTag::registerImpl: not cross-inserted '" << pImpl->maBcp47 << "' for 0x" << ::std::hex << mnLangID << " have 0x" << ::std::hex << (*res.first).second->mnLangID); } } @@ -885,8 +883,7 @@ LanguageTag::ImplPtr LanguageTag::registerImpl() const { if (!pImpl->mbInitializedBcp47) pImpl->convertLocaleToBcp47(); - SAL_INFO( "i18nlangtag", "LanguageTag::registerImpl: not cross-inserted '" << pImpl->maBcp47 << "'" - << " for 0x" << ::std::hex << mnLangID << " round-trip to 0x" << ::std::hex << nLang); + SAL_INFO( "i18nlangtag", "LanguageTag::registerImpl: not cross-inserted '" << pImpl->maBcp47 << "' for 0x" << ::std::hex << mnLangID << " round-trip to 0x" << ::std::hex << nLang); } } } -- cgit