diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-05-02 14:20:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-05-03 11:19:51 +0200 |
commit | 1c12e5fe5a458f4a4d4dd8080c2ade2f20ef17dc (patch) | |
tree | aa526379a6f1921377cc9f33b8650812a8a9cacd /xmlsecurity/qa | |
parent | 669fe2f229df17a569ee8f87b654a26b1b770e8d (diff) |
Just use Any ctor instead of makeAny in xmlsecurity
Change-Id: Ic2e9189d116b03122d24a477d9396ca3d49a0a25
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133698
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'xmlsecurity/qa')
-rw-r--r-- | xmlsecurity/qa/unit/signing/signing.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/qa/unit/signing/signing.cxx b/xmlsecurity/qa/unit/signing/signing.cxx index 90d0edf8973e..9e28f90d55d1 100644 --- a/xmlsecurity/qa/unit/signing/signing.cxx +++ b/xmlsecurity/qa/unit/signing/signing.cxx @@ -827,7 +827,7 @@ CPPUNIT_TEST_FIXTURE(SigningTest, testPDFAddVisibleSignature) // Select it and assign a certificate. uno::Reference<view::XSelectionSupplier> xSelectionSupplier(pBaseModel->getCurrentController(), uno::UNO_QUERY); - xSelectionSupplier->select(uno::makeAny(xShape)); + xSelectionSupplier->select(uno::Any(xShape)); uno::Sequence<uno::Reference<security::XCertificate>> aCertificates = mxSecurityContext->getSecurityEnvironment()->getPersonalCertificates(); if (!aCertificates.hasElements()) |