diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-06-22 09:07:20 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-06-22 09:07:37 +0200 |
commit | 6115b109322dc497f569366d3fe7d2a41dc41140 (patch) | |
tree | 7e102fc0d33a9322f27d505ef6f9cffcf98385b0 /xmlsecurity/source | |
parent | 686dfc5ed53e37bc4a60227fcb10c1d537c8aa62 (diff) |
xmlsecurity: remove newly introduced redundant namespace alias, used only once
Change-Id: Ia93ec62863d16d3cc60878968b79ed0ccc5fba9b
Diffstat (limited to 'xmlsecurity/source')
-rw-r--r-- | xmlsecurity/source/helper/documentsignaturemanager.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xmlsecurity/source/helper/documentsignaturemanager.cxx b/xmlsecurity/source/helper/documentsignaturemanager.cxx index 21c55c687125..ee863e4c2530 100644 --- a/xmlsecurity/source/helper/documentsignaturemanager.cxx +++ b/xmlsecurity/source/helper/documentsignaturemanager.cxx @@ -41,7 +41,6 @@ #include <xmlsec/xmlsec_init.hxx> using namespace css; -namespace cssu = com::sun::star::uno; DocumentSignatureManager::DocumentSignatureManager(const uno::Reference<uno::XComponentContext>& xContext, DocumentSignatureMode eMode) : mxContext(xContext), @@ -266,7 +265,7 @@ bool DocumentSignatureManager::add(const uno::Reference<security::XCertificate>& } // GPG or X509 key? - uno::Reference< lang::XServiceInfo > xServiceInfo( xSecurityContext, cssu::UNO_QUERY ); + uno::Reference< lang::XServiceInfo > xServiceInfo(xSecurityContext, uno::UNO_QUERY); if (xServiceInfo->getImplementationName() == "com.sun.star.xml.security.gpg.XMLSecurityContext_GpgImpl") { // GPG keys only really have PGPKeyId and PGPKeyPacket |