diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-03-30 10:39:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-03-30 11:37:59 +0000 |
commit | db9912d824c1d621fdc409b9cdd6c79caefe1327 (patch) | |
tree | 5a3c905b93df25b5baf3c773927778c6f7fc4389 /uui | |
parent | 6b19f32252f8ba5540ce3b1e38f8ac6112421906 (diff) |
loplugin:stringadd in ucbhelper..uui
when applying my upcoming patch to also consider O[U]StringBuffer
Change-Id: I49549347c1c041cc9ce103aed1fe1cc3bc1a780f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149751
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/iahndl-authentication.cxx | 3 | ||||
-rw-r--r-- | uui/source/secmacrowarnings.cxx | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/uui/source/iahndl-authentication.cxx b/uui/source/iahndl-authentication.cxx index ed8150997a30..8a2ae199c2fd 100644 --- a/uui/source/iahndl-authentication.cxx +++ b/uui/source/iahndl-authentication.cxx @@ -438,8 +438,7 @@ executeMasterPasswordDialog( for (sal_uInt8 i : aKey) { // match PasswordContainer::DecodePasswords aMasterPasswd.copy(index * 2, 2).toUInt32(16)); - aBuffer.append(OUString::number(i >> 4, 16)); - aBuffer.append(OUString::number(i & 15, 16)); + aBuffer.append(OUString::number(i >> 4, 16) + OUString::number(i & 15, 16)); } rInfo.SetPassword(aBuffer.makeStringAndClear()); } diff --git a/uui/source/secmacrowarnings.cxx b/uui/source/secmacrowarnings.cxx index 31281c2f5236..9b81f6d9cb22 100644 --- a/uui/source/secmacrowarnings.cxx +++ b/uui/source/secmacrowarnings.cxx @@ -182,8 +182,8 @@ void MacroWarning::SetStorage( const css::uno::Reference < css::embed::XStorage for( sal_Int32 i = 1 ; i < nCnt ; ++i ) { - s.append("\n"); - s.append(GetContentPart( rInfos[ i ].Signer->getSubjectName(), aCN_Id )); + s.append(OUString::Concat("\n") + + GetContentPart( rInfos[ i ].Signer->getSubjectName(), aCN_Id )); } mxSignsFI->set_label(s.makeStringAndClear()); |