Kaydet (Commit) 496a2c2e authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Drop unused XInitialization from implementation

...now that it has been dropped from the service declaration with
6a12e138 "fdo#46808, Convert
XMLSignatureTemplate service to new style"---appears to be nonsense that had
been in there "since the beginning."

Change-Id: I4e4d3649f1aa0dacebdc8bdcee0348cee294ab89
üst 3d4609d9
...@@ -104,11 +104,6 @@ void SAL_CALL XMLSignatureTemplateImpl::setStatus( ...@@ -104,11 +104,6 @@ void SAL_CALL XMLSignatureTemplateImpl::setStatus(
return m_nStatus; return m_nStatus;
} }
/* XInitialization */
void SAL_CALL XMLSignatureTemplateImpl :: initialize( const Sequence< Any >& /*aArguments*/ ) throw( Exception, RuntimeException ) {
// TBD
} ;
/* XServiceInfo */ /* XServiceInfo */
OUString SAL_CALL XMLSignatureTemplateImpl :: getImplementationName() throw( RuntimeException ) { OUString SAL_CALL XMLSignatureTemplateImpl :: getImplementationName() throw( RuntimeException ) {
return impl_getImplementationName() ; return impl_getImplementationName() ;
......
...@@ -23,22 +23,20 @@ ...@@ -23,22 +23,20 @@
#include <sal/config.h> #include <sal/config.h>
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
#include <cppuhelper/factory.hxx> #include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase3.hxx> #include <cppuhelper/implbase2.hxx>
#include <com/sun/star/uno/Exception.hpp> #include <com/sun/star/uno/Exception.hpp>
#include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/lang/XSingleServiceFactory.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
#include <com/sun/star/xml/crypto/XXMLSignatureTemplate.hpp> #include <com/sun/star/xml/crypto/XXMLSignatureTemplate.hpp>
#include <com/sun/star/xml/wrapper/XXMLElementWrapper.hpp> #include <com/sun/star/xml/wrapper/XXMLElementWrapper.hpp>
#include <vector> #include <vector>
class XMLSignatureTemplateImpl : public ::cppu::WeakImplHelper3< class XMLSignatureTemplateImpl : public ::cppu::WeakImplHelper2<
::com::sun::star::xml::crypto::XXMLSignatureTemplate , ::com::sun::star::xml::crypto::XXMLSignatureTemplate ,
::com::sun::star::lang::XInitialization ,
::com::sun::star::lang::XServiceInfo > ::com::sun::star::lang::XServiceInfo >
{ {
private : private :
...@@ -83,11 +81,6 @@ class XMLSignatureTemplateImpl : public ::cppu::WeakImplHelper3< ...@@ -83,11 +81,6 @@ class XMLSignatureTemplateImpl : public ::cppu::WeakImplHelper3<
SAL_CALL getStatus( ) SAL_CALL getStatus( )
throw (::com::sun::star::uno::RuntimeException); throw (::com::sun::star::uno::RuntimeException);
//Methods from XInitialization
virtual void SAL_CALL initialize(
const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments
) throw( ::com::sun::star::uno::Exception , ::com::sun::star::uno::RuntimeException ) ;
//Methods from XServiceInfo //Methods from XServiceInfo
virtual OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException ) ; virtual OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException ) ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment