summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/framework
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-23 13:44:07 +0200
committerNoel Grandin <noel@peralex.com>2014-04-24 10:53:16 +0200
commite4e654e40575300eaab429a6b94348bf43b9d7ce (patch)
tree3e44e5429c9e6ddecae45e47154733ac882d9564 /xmlsecurity/source/framework
parent2ff8ae7c9e9b36d187abef9e163f47a740d51214 (diff)
xmlsecurity: sal_Bool->bool
Change-Id: I4f32fe3b5133e13dab88ca1c9acd021d84dc59a9
Diffstat (limited to 'xmlsecurity/source/framework')
-rw-r--r--xmlsecurity/source/framework/decryptorimpl.hxx3
-rw-r--r--xmlsecurity/source/framework/encryptorimpl.hxx3
-rw-r--r--xmlsecurity/source/framework/saxeventkeeperimpl.cxx2
-rw-r--r--xmlsecurity/source/framework/saxeventkeeperimpl.hxx3
-rw-r--r--xmlsecurity/source/framework/securityengine.cxx2
-rw-r--r--xmlsecurity/source/framework/signaturecreatorimpl.hxx3
-rw-r--r--xmlsecurity/source/framework/signatureverifierimpl.hxx3
7 files changed, 2 insertions, 17 deletions
diff --git a/xmlsecurity/source/framework/decryptorimpl.hxx b/xmlsecurity/source/framework/decryptorimpl.hxx
index 9f6aab4c4d5d..1833d07a91dd 100644
--- a/xmlsecurity/source/framework/decryptorimpl.hxx
+++ b/xmlsecurity/source/framework/decryptorimpl.hxx
@@ -96,9 +96,6 @@ public:
OUString DecryptorImpl_getImplementationName()
throw ( com::sun::star::uno::RuntimeException );
-sal_Bool SAL_CALL DecryptorImpl_supportsService( const OUString& ServiceName )
- throw ( com::sun::star::uno::RuntimeException );
-
com::sun::star::uno::Sequence< OUString > SAL_CALL DecryptorImpl_getSupportedServiceNames( )
throw ( com::sun::star::uno::RuntimeException );
diff --git a/xmlsecurity/source/framework/encryptorimpl.hxx b/xmlsecurity/source/framework/encryptorimpl.hxx
index 1b0ce327d0ad..dc6df452cd71 100644
--- a/xmlsecurity/source/framework/encryptorimpl.hxx
+++ b/xmlsecurity/source/framework/encryptorimpl.hxx
@@ -111,9 +111,6 @@ public:
OUString EncryptorImpl_getImplementationName()
throw ( com::sun::star::uno::RuntimeException );
-sal_Bool SAL_CALL EncryptorImpl_supportsService( const OUString& ServiceName )
- throw ( com::sun::star::uno::RuntimeException );
-
com::sun::star::uno::Sequence< OUString > SAL_CALL EncryptorImpl_getSupportedServiceNames( )
throw ( com::sun::star::uno::RuntimeException );
diff --git a/xmlsecurity/source/framework/saxeventkeeperimpl.cxx b/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
index 7617589b5565..240f9ec41886 100644
--- a/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
+++ b/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
@@ -1233,7 +1233,7 @@ void SAL_CALL SAXEventKeeperImpl::startElement(
void SAL_CALL SAXEventKeeperImpl::endElement( const OUString& aName )
throw (cssxs::SAXException, cssu::RuntimeException, std::exception)
{
- sal_Bool bIsCurrent = m_xXMLDocument->isCurrent(m_pCurrentBufferNode->getXMLElement());
+ bool bIsCurrent = m_xXMLDocument->isCurrent(m_pCurrentBufferNode->getXMLElement());
/*
* If there is a following handler and no blocking now, then
diff --git a/xmlsecurity/source/framework/saxeventkeeperimpl.hxx b/xmlsecurity/source/framework/saxeventkeeperimpl.hxx
index dfdd9ae343b9..fd6539bbdd9f 100644
--- a/xmlsecurity/source/framework/saxeventkeeperimpl.hxx
+++ b/xmlsecurity/source/framework/saxeventkeeperimpl.hxx
@@ -336,9 +336,6 @@ public:
OUString SAXEventKeeperImpl_getImplementationName()
throw ( com::sun::star::uno::RuntimeException );
-sal_Bool SAL_CALL SAXEventKeeperImpl_supportsService( const OUString& ServiceName )
- throw ( com::sun::star::uno::RuntimeException );
-
com::sun::star::uno::Sequence< OUString > SAL_CALL SAXEventKeeperImpl_getSupportedServiceNames( )
throw ( com::sun::star::uno::RuntimeException );
diff --git a/xmlsecurity/source/framework/securityengine.cxx b/xmlsecurity/source/framework/securityengine.cxx
index 1139ac9f0406..84a3e637b54d 100644
--- a/xmlsecurity/source/framework/securityengine.cxx
+++ b/xmlsecurity/source/framework/securityengine.cxx
@@ -54,7 +54,7 @@ void SAL_CALL SecurityEngine::setKeyId( sal_Int32 id )
sal_Bool SAL_CALL SecurityEngine::endMission( )
throw (com::sun::star::uno::RuntimeException, std::exception)
{
- sal_Bool rc = m_bMissionDone;
+ bool rc = m_bMissionDone;
if (!rc)
{
diff --git a/xmlsecurity/source/framework/signaturecreatorimpl.hxx b/xmlsecurity/source/framework/signaturecreatorimpl.hxx
index dc278f9ab26b..e913283e6071 100644
--- a/xmlsecurity/source/framework/signaturecreatorimpl.hxx
+++ b/xmlsecurity/source/framework/signaturecreatorimpl.hxx
@@ -108,9 +108,6 @@ public:
OUString SignatureCreatorImpl_getImplementationName()
throw ( com::sun::star::uno::RuntimeException );
-sal_Bool SAL_CALL SignatureCreatorImpl_supportsService( const OUString& ServiceName )
- throw ( com::sun::star::uno::RuntimeException );
-
com::sun::star::uno::Sequence< OUString > SAL_CALL SignatureCreatorImpl_getSupportedServiceNames( )
throw ( com::sun::star::uno::RuntimeException );
diff --git a/xmlsecurity/source/framework/signatureverifierimpl.hxx b/xmlsecurity/source/framework/signatureverifierimpl.hxx
index 1d0db05cbf35..382c7c6a6fc6 100644
--- a/xmlsecurity/source/framework/signatureverifierimpl.hxx
+++ b/xmlsecurity/source/framework/signatureverifierimpl.hxx
@@ -99,9 +99,6 @@ public:
OUString SignatureVerifierImpl_getImplementationName()
throw ( com::sun::star::uno::RuntimeException );
-sal_Bool SAL_CALL SignatureVerifierImpl_supportsService( const OUString& ServiceName )
- throw ( com::sun::star::uno::RuntimeException );
-
com::sun::star::uno::Sequence< OUString > SAL_CALL SignatureVerifierImpl_getSupportedServiceNames( )
throw ( com::sun::star::uno::RuntimeException );