diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-02-12 11:10:24 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-02-12 11:57:16 +0100 |
commit | 35ed9089373b4b63ecc656bd4dd57fc6f128c622 (patch) | |
tree | 07b692f8fb6f00f5c8a4f3ea20b316fd8ab56b42 /xmlsecurity | |
parent | de92a3d67f423aeb30cab28fb8ecf77743e1c470 (diff) |
xmlsecurity: fix typo in DocumentSignatureHelper::AppendContentTypes()
Change-Id: I5c67db0369d5eb24178e7173ac716dd8e96dfd47
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/helper/documentsignaturehelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/source/helper/documentsignaturehelper.cxx b/xmlsecurity/source/helper/documentsignaturehelper.cxx index 46b270e80d90..2262e069a7b0 100644 --- a/xmlsecurity/source/helper/documentsignaturehelper.cxx +++ b/xmlsecurity/source/helper/documentsignaturehelper.cxx @@ -333,7 +333,7 @@ void DocumentSignatureHelper::AppendContentTypes(const uno::Reference<embed::XSt return rElement.endsWith("." + rPair.First); }); - if (it != rOverrides.end()) + if (it != rDefaults.end()) { rElement = "/" + rElement + "?ContentType=" + it->Second; continue; |