diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-17 10:29:59 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-17 09:49:35 +0000 |
commit | e963a8891238efc758306a09debbc93904a5388b (patch) | |
tree | 503b140d741417b6a8401ccaf230b3d3a1ea909e /xmlsecurity/source/framework | |
parent | 771d9ef3f65785092267f6068384e8cdda17f883 (diff) |
formatting of public/private/protected section qualifiers
make it consistent across the codebase, no space between keyword
and the colon
Change-Id: Idca61ddfc74ad2460fb05fe417499324b05e5de5
Reviewed-on: https://gerrit.libreoffice.org/17148
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmlsecurity/source/framework')
-rw-r--r-- | xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx | 4 | ||||
-rw-r--r-- | xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx index 1900909a7a14..b76abcab09ae 100644 --- a/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx +++ b/xmlsecurity/source/framework/xmlencryptiontemplateimpl.hxx @@ -38,13 +38,13 @@ class XMLEncryptionTemplateImpl : public ::cppu::WeakImplHelper2< ::com::sun::star::xml::crypto::XXMLEncryptionTemplate , ::com::sun::star::lang::XServiceInfo > { - private : + private: ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > m_xTemplate ; ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > m_xTarget ; ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xServiceManager ; ::com::sun::star::xml::crypto::SecurityOperationStatus m_nStatus; - public : + public: explicit XMLEncryptionTemplateImpl( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& aFactory ) ; virtual ~XMLEncryptionTemplateImpl() ; diff --git a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx index 6d34bbabdc39..e6d395c247bb 100644 --- a/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx +++ b/xmlsecurity/source/framework/xmlsignaturetemplateimpl.hxx @@ -39,14 +39,14 @@ class XMLSignatureTemplateImpl : public ::cppu::WeakImplHelper2< ::com::sun::star::xml::crypto::XXMLSignatureTemplate , ::com::sun::star::lang::XServiceInfo > { - private : + private: ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > m_xTemplate ; ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xServiceManager ; std::vector< ::com::sun::star::uno::Reference< ::com::sun::star::xml::wrapper::XXMLElementWrapper > > targets; ::com::sun::star::uno::Reference< ::com::sun::star::xml::crypto::XUriBinding > m_xUriBinding; ::com::sun::star::xml::crypto::SecurityOperationStatus m_nStatus; - public : + public: explicit XMLSignatureTemplateImpl( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& aFactory ) ; virtual ~XMLSignatureTemplateImpl() ; |