[Libreoffice-commits] core.git: xmlsecurity/source

Stephan Bergmann (via logerrit) logerrit at kemper.freedesktop.org
Fri Jun 26 12:37:45 UTC 2020


 xmlsecurity/source/dialogs/certificateviewer.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3fe185a4eae857e13cba878447614e455c601f6a
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Fri Jun 26 13:19:22 2020 +0200
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Fri Jun 26 14:37:13 2020 +0200

    Upcoming improved loplugin:elidestringvar: xmlsecurity
    
    Change-Id: I1490e79489a98dd97ec31d6b52b4f05a1411de79
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97212
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/xmlsecurity/source/dialogs/certificateviewer.cxx b/xmlsecurity/source/dialogs/certificateviewer.cxx
index ea87640472c4..0dc981b052db 100644
--- a/xmlsecurity/source/dialogs/certificateviewer.cxx
+++ b/xmlsecurity/source/dialogs/certificateviewer.cxx
@@ -356,7 +356,7 @@ void CertificateViewerCertPathTP::InsertCert(const weld::TreeIter* pParent, cons
                                              const css::uno::Reference< css::security::XCertificate >& rxCert,
                                              bool bValid)
 {
-    OUString sImage = bValid ? OUStringLiteral(BMP_CERT_OK) : OUStringLiteral(BMP_CERT_NOT_OK);
+    auto const sImage = bValid ? OUStringLiteral(BMP_CERT_OK) : OUStringLiteral(BMP_CERT_NOT_OK);
     maUserData.emplace_back(std::make_unique<CertPath_UserData>(rxCert, bValid));
     OUString sId(OUString::number(reinterpret_cast<sal_Int64>(maUserData.back().get())));
     mxCertPathLB->insert(pParent, -1, &rName, &sId, nullptr, nullptr, false, mxScratchIter.get());


More information about the Libreoffice-commits mailing list