From 6dce9c6757823b9e89863716ae70ff4e8ddd4e60 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 6 Feb 2017 17:08:38 +0100 Subject: Add missing #includes ...and remove some unncessary using directives/declarations, in preparation of removing now-unnecessary #includes from cppumaker-generated files, post e57ca02849c3d87142ff5ff9099a212e72b8139c "Remove dynamic exception specifications". Change-Id: Iaf1f268871e2ee1d1c76cf90f03557527ebc9067 --- xmlsecurity/source/component/documentdigitalsignatures.cxx | 1 + xmlsecurity/source/helper/documentsignaturehelper.cxx | 1 + xmlsecurity/source/helper/pdfsignaturehelper.cxx | 1 + xmlsecurity/source/helper/xsecparser.cxx | 1 + xmlsecurity/source/xmlsec/nss/ciphercontext.cxx | 2 ++ xmlsecurity/source/xmlsec/nss/digestcontext.cxx | 3 +++ xmlsecurity/source/xmlsec/nss/nssinitializer.cxx | 1 + xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx | 2 ++ xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx | 1 - 9 files changed, 12 insertions(+), 1 deletion(-) (limited to 'xmlsecurity') diff --git a/xmlsecurity/source/component/documentdigitalsignatures.cxx b/xmlsecurity/source/component/documentdigitalsignatures.cxx index 353e115befaf..81d6aeba0db6 100644 --- a/xmlsecurity/source/component/documentdigitalsignatures.cxx +++ b/xmlsecurity/source/component/documentdigitalsignatures.cxx @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include diff --git a/xmlsecurity/source/helper/documentsignaturehelper.cxx b/xmlsecurity/source/helper/documentsignaturehelper.cxx index f89b635c5d11..61e11ceb0448 100644 --- a/xmlsecurity/source/helper/documentsignaturehelper.cxx +++ b/xmlsecurity/source/helper/documentsignaturehelper.cxx @@ -23,6 +23,7 @@ #include #include +#include #include #include #include diff --git a/xmlsecurity/source/helper/pdfsignaturehelper.cxx b/xmlsecurity/source/helper/pdfsignaturehelper.cxx index bb281c9d4ed8..4b8859f0ad0e 100644 --- a/xmlsecurity/source/helper/pdfsignaturehelper.cxx +++ b/xmlsecurity/source/helper/pdfsignaturehelper.cxx @@ -13,6 +13,7 @@ #include #include +#include #include #include diff --git a/xmlsecurity/source/helper/xsecparser.cxx b/xmlsecurity/source/helper/xsecparser.cxx index 210db2d113cc..7c09d731ab0a 100644 --- a/xmlsecurity/source/helper/xsecparser.cxx +++ b/xmlsecurity/source/helper/xsecparser.cxx @@ -19,6 +19,7 @@ #include "xsecparser.hxx" +#include #include #include diff --git a/xmlsecurity/source/xmlsec/nss/ciphercontext.cxx b/xmlsecurity/source/xmlsec/nss/ciphercontext.cxx index c1532d77bea3..d40126f5275a 100644 --- a/xmlsecurity/source/xmlsec/nss/ciphercontext.cxx +++ b/xmlsecurity/source/xmlsec/nss/ciphercontext.cxx @@ -17,7 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include +#include #include #include #include diff --git a/xmlsecurity/source/xmlsec/nss/digestcontext.cxx b/xmlsecurity/source/xmlsec/nss/digestcontext.cxx index 538452e641c2..40d871ac6543 100644 --- a/xmlsecurity/source/xmlsec/nss/digestcontext.cxx +++ b/xmlsecurity/source/xmlsec/nss/digestcontext.cxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include + +#include #include #include "digestcontext.hxx" diff --git a/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx b/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx index c25bc9fe973b..b970b7d4cb38 100644 --- a/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx +++ b/xmlsecurity/source/xmlsec/nss/nssinitializer.cxx @@ -24,6 +24,7 @@ */ #undef DEBUG +#include #include #include #include diff --git a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx index ccfb78098bda..9fa3b3166f1d 100644 --- a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx @@ -18,6 +18,8 @@ */ #include + +#include #include #include "xmlencryption_nssimpl.hxx" diff --git a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx index 566d3cc77d35..8d2e9b40fc95 100644 --- a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx @@ -45,7 +45,6 @@ using ::com::sun::star::xml::crypto::XXMLSignature ; using ::com::sun::star::xml::crypto::XXMLSignatureTemplate ; using ::com::sun::star::xml::crypto::XXMLSecurityContext ; using ::com::sun::star::xml::crypto::XUriBinding ; -using ::com::sun::star::xml::crypto::XMLSignatureException ; XMLSignature_NssImpl::XMLSignature_NssImpl() { } -- cgit