diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-23 13:44:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-24 10:53:16 +0200 |
commit | e4e654e40575300eaab429a6b94348bf43b9d7ce (patch) | |
tree | 3e44e5429c9e6ddecae45e47154733ac882d9564 /xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx | |
parent | 2ff8ae7c9e9b36d187abef9e163f47a740d51214 (diff) |
xmlsecurity: sal_Bool->bool
Change-Id: I4f32fe3b5133e13dab88ca1c9acd021d84dc59a9
Diffstat (limited to 'xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx')
-rw-r--r-- | xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx b/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx index f3bb28e96b53..eb5140e01393 100644 --- a/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx +++ b/xmlsecurity/source/xmlsec/certificateextension_xmlsecimpl.hxx @@ -32,7 +32,7 @@ class CertificateExtension_XmlSecImpl : public ::cppu::WeakImplHelper1< ::com::sun::star::security::XCertificateExtension > { private : - sal_Bool m_critical ; + bool m_critical ; ::com::sun::star::uno::Sequence< sal_Int8 > m_xExtnId ; ::com::sun::star::uno::Sequence< sal_Int8 > m_xExtnValue ; @@ -47,7 +47,7 @@ class CertificateExtension_XmlSecImpl : public ::cppu::WeakImplHelper1< virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getExtensionValue() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE ; - void setCertExtn( unsigned char* value, unsigned int vlen, unsigned char* id, unsigned int idlen, sal_Bool critical ) ; + void setCertExtn( unsigned char* value, unsigned int vlen, unsigned char* id, unsigned int idlen, bool critical ) ; } ; #endif // INCLUDED_XMLSECURITY_SOURCE_XMLSEC_CERTIFICATEEXTENSION_XMLSECIMPL_HXX |