From 0f6725454823a5789f3e1c70dad024c46d3f6fc9 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 12 May 2016 10:05:54 +0200 Subject: clang-tidy modernize-loop-convert in toolkit to uui Change-Id: I805aa1389ef8dde158f0b776d6b59579fa3082e4 Reviewed-on: https://gerrit.libreoffice.org/24921 Tested-by: Jenkins Reviewed-by: Noel Grandin --- uui/source/iahndl-authentication.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'uui') diff --git a/uui/source/iahndl-authentication.cxx b/uui/source/iahndl-authentication.cxx index e4d1d6009c03..9855df99d4f7 100644 --- a/uui/source/iahndl-authentication.cxx +++ b/uui/source/iahndl-authentication.cxx @@ -449,10 +449,10 @@ executeMasterPasswordDialog( 1000); OUStringBuffer aBuffer; - for (int i = 0; i < RTL_DIGEST_LENGTH_MD5; ++i) + for (sal_uInt8 i : aKey) { - aBuffer.append(static_cast< sal_Unicode >('a' + (aKey[i] >> 4))); - aBuffer.append(static_cast< sal_Unicode >('a' + (aKey[i] & 15))); + aBuffer.append(static_cast< sal_Unicode >('a' + (i >> 4))); + aBuffer.append(static_cast< sal_Unicode >('a' + (i & 15))); } rInfo.SetPassword(aBuffer.makeStringAndClear()); } -- cgit