diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2018-04-13 13:08:03 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2018-05-22 10:27:37 +0200 |
commit | 203d967c045c4bf4e83d18bdcb96e11f899e1056 (patch) | |
tree | 7aa17706509106c6693b8c9d4336e3ceec7a0672 /cui | |
parent | 066abd6163a1b12e3bdcaf0385a4842c7bc7d119 (diff) |
Related tdf#83877 Select certificate ok button label doesn't match
Change the button to "Select" instead of sign when we only want to
select a certificate.
Change-Id: Ifa896e502c8680497d71912ddd1058ab0b71542b
Reviewed-on: https://gerrit.libreoffice.org/52823
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/SignSignatureLineDialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/SignSignatureLineDialog.cxx b/cui/source/dialogs/SignSignatureLineDialog.cxx index 641a4fb10c68..0c6059e75649 100644 --- a/cui/source/dialogs/SignSignatureLineDialog.cxx +++ b/cui/source/dialogs/SignSignatureLineDialog.cxx @@ -119,7 +119,7 @@ IMPL_LINK_NOARG(SignSignatureLineDialog, chooseCertificate, weld::Button&, void) Reference<XDocumentDigitalSignatures> xSigner(DocumentDigitalSignatures::createWithVersion( comphelper::getProcessComponentContext(), "1.2")); OUString aDescription; - Reference<XCertificate> xSignCertificate = xSigner->chooseSigningCertificate(aDescription); + Reference<XCertificate> xSignCertificate = xSigner->selectSigningCertificate(aDescription); if (xSignCertificate.is()) { |