summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/core/edit/edfcol.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/edit/edfcol.cxx b/sw/source/core/edit/edfcol.cxx
index 452b487970fd..64b990b4a4c4 100644
--- a/sw/source/core/edit/edfcol.cxx
+++ b/sw/source/core/edit/edfcol.cxx
@@ -1796,7 +1796,7 @@ void SwEditShell::SignParagraph()
// 3. Sign it.
svl::crypto::SigningContext aSigningContext;
- aSigningContext.m_xCertificate = xCertificate;
+ aSigningContext.m_xCertificate = std::move(xCertificate);
svl::crypto::Signing signing(aSigningContext);
signing.AddDataRange(utf8Text.getStr(), utf8Text.getLength());
OStringBuffer sigBuf;