Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
92f162eb
Kaydet (Commit)
92f162eb
authored
Ock 15, 2014
tarafından
Alexandre Vicenzi
Kaydeden (comit)
Matúš Kukan
Ock 17, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Convert xmlsecurity to cppu::supportsService
Change-Id: Ifcec9e067e54cc8a3d1254d41d09ea251820849d
üst
f907f21e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
42 deletions
+24
-42
decryptorimpl.cxx
xmlsecurity/source/framework/decryptorimpl.cxx
+4
-7
encryptorimpl.cxx
xmlsecurity/source/framework/encryptorimpl.cxx
+4
-7
saxeventkeeperimpl.cxx
xmlsecurity/source/framework/saxeventkeeperimpl.cxx
+4
-7
signaturecreatorimpl.cxx
xmlsecurity/source/framework/signaturecreatorimpl.cxx
+4
-7
signatureverifierimpl.cxx
xmlsecurity/source/framework/signatureverifierimpl.cxx
+4
-7
nssinitializer.cxx
xmlsecurity/source/xmlsec/nss/nssinitializer.cxx
+4
-7
No files found.
xmlsecurity/source/framework/decryptorimpl.cxx
Dosyayı görüntüle @
92f162eb
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
#include <com/sun/star/xml/wrapper/XXMLElementWrapper.hpp>
#include <com/sun/star/xml/wrapper/XXMLElementWrapper.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <comphelper/processfactory.hxx>
#include <comphelper/processfactory.hxx>
#include <cppuhelper/supportsservice.hxx>
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
com
::
sun
::
star
::
uno
;
namespace
cssu
=
com
::
sun
::
star
::
uno
;
namespace
cssu
=
com
::
sun
::
star
::
uno
;
...
@@ -183,12 +184,6 @@ OUString DecryptorImpl_getImplementationName ()
...
@@ -183,12 +184,6 @@ OUString DecryptorImpl_getImplementationName ()
return
OUString
(
IMPLEMENTATION_NAME
);
return
OUString
(
IMPLEMENTATION_NAME
);
}
}
sal_Bool
SAL_CALL
DecryptorImpl_supportsService
(
const
OUString
&
ServiceName
)
throw
(
cssu
::
RuntimeException
)
{
return
ServiceName
==
SERVICE_NAME
;
}
cssu
::
Sequence
<
OUString
>
SAL_CALL
DecryptorImpl_getSupportedServiceNames
(
)
cssu
::
Sequence
<
OUString
>
SAL_CALL
DecryptorImpl_getSupportedServiceNames
(
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
...
@@ -211,11 +206,13 @@ OUString SAL_CALL DecryptorImpl::getImplementationName( )
...
@@ -211,11 +206,13 @@ OUString SAL_CALL DecryptorImpl::getImplementationName( )
{
{
return
DecryptorImpl_getImplementationName
();
return
DecryptorImpl_getImplementationName
();
}
}
sal_Bool
SAL_CALL
DecryptorImpl
::
supportsService
(
const
OUString
&
rServiceName
)
sal_Bool
SAL_CALL
DecryptorImpl
::
supportsService
(
const
OUString
&
rServiceName
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
return
DecryptorImpl_supportsService
(
rServiceName
);
return
cppu
::
supportsService
(
this
,
rServiceName
);
}
}
cssu
::
Sequence
<
OUString
>
SAL_CALL
DecryptorImpl
::
getSupportedServiceNames
(
)
cssu
::
Sequence
<
OUString
>
SAL_CALL
DecryptorImpl
::
getSupportedServiceNames
(
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
...
...
xmlsecurity/source/framework/encryptorimpl.cxx
Dosyayı görüntüle @
92f162eb
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
#include <com/sun/star/xml/wrapper/XXMLElementWrapper.hpp>
#include <com/sun/star/xml/wrapper/XXMLElementWrapper.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <comphelper/processfactory.hxx>
#include <comphelper/processfactory.hxx>
#include <cppuhelper/supportsservice.hxx>
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
com
::
sun
::
star
::
uno
;
namespace
cssl
=
com
::
sun
::
star
::
lang
;
namespace
cssl
=
com
::
sun
::
star
::
lang
;
...
@@ -217,12 +218,6 @@ OUString EncryptorImpl_getImplementationName ()
...
@@ -217,12 +218,6 @@ OUString EncryptorImpl_getImplementationName ()
return
OUString
(
IMPLEMENTATION_NAME
);
return
OUString
(
IMPLEMENTATION_NAME
);
}
}
sal_Bool
SAL_CALL
EncryptorImpl_supportsService
(
const
OUString
&
ServiceName
)
throw
(
RuntimeException
)
{
return
ServiceName
==
SERVICE_NAME
;
}
Sequence
<
OUString
>
SAL_CALL
EncryptorImpl_getSupportedServiceNames
(
)
Sequence
<
OUString
>
SAL_CALL
EncryptorImpl_getSupportedServiceNames
(
)
throw
(
RuntimeException
)
throw
(
RuntimeException
)
{
{
...
@@ -246,11 +241,13 @@ OUString SAL_CALL EncryptorImpl::getImplementationName( )
...
@@ -246,11 +241,13 @@ OUString SAL_CALL EncryptorImpl::getImplementationName( )
{
{
return
EncryptorImpl_getImplementationName
();
return
EncryptorImpl_getImplementationName
();
}
}
sal_Bool
SAL_CALL
EncryptorImpl
::
supportsService
(
const
OUString
&
rServiceName
)
sal_Bool
SAL_CALL
EncryptorImpl
::
supportsService
(
const
OUString
&
rServiceName
)
throw
(
RuntimeException
)
throw
(
RuntimeException
)
{
{
return
EncryptorImpl_supportsService
(
rServiceName
);
return
cppu
::
supportsService
(
this
,
rServiceName
);
}
}
Sequence
<
OUString
>
SAL_CALL
EncryptorImpl
::
getSupportedServiceNames
(
)
Sequence
<
OUString
>
SAL_CALL
EncryptorImpl
::
getSupportedServiceNames
(
)
throw
(
RuntimeException
)
throw
(
RuntimeException
)
{
{
...
...
xmlsecurity/source/framework/saxeventkeeperimpl.cxx
Dosyayı görüntüle @
92f162eb
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/xml/sax/XDocumentHandler.hpp>
#include <com/sun/star/xml/sax/XDocumentHandler.hpp>
#include <com/sun/star/xml/crypto/sax/ConstOfSecurityId.hpp>
#include <com/sun/star/xml/crypto/sax/ConstOfSecurityId.hpp>
#include <cppuhelper/supportsservice.hxx>
namespace
cssu
=
com
::
sun
::
star
::
uno
;
namespace
cssu
=
com
::
sun
::
star
::
uno
;
namespace
cssl
=
com
::
sun
::
star
::
lang
;
namespace
cssl
=
com
::
sun
::
star
::
lang
;
...
@@ -1364,12 +1365,6 @@ OUString SAXEventKeeperImpl_getImplementationName ()
...
@@ -1364,12 +1365,6 @@ OUString SAXEventKeeperImpl_getImplementationName ()
return
OUString
(
IMPLEMENTATION_NAME
);
return
OUString
(
IMPLEMENTATION_NAME
);
}
}
sal_Bool
SAL_CALL
SAXEventKeeperImpl_supportsService
(
const
OUString
&
ServiceName
)
throw
(
cssu
::
RuntimeException
)
{
return
ServiceName
==
SERVICE_NAME
;
}
cssu
::
Sequence
<
OUString
>
SAL_CALL
SAXEventKeeperImpl_getSupportedServiceNames
(
)
cssu
::
Sequence
<
OUString
>
SAL_CALL
SAXEventKeeperImpl_getSupportedServiceNames
(
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
...
@@ -1393,11 +1388,13 @@ OUString SAL_CALL SAXEventKeeperImpl::getImplementationName( )
...
@@ -1393,11 +1388,13 @@ OUString SAL_CALL SAXEventKeeperImpl::getImplementationName( )
{
{
return
SAXEventKeeperImpl_getImplementationName
();
return
SAXEventKeeperImpl_getImplementationName
();
}
}
sal_Bool
SAL_CALL
SAXEventKeeperImpl
::
supportsService
(
const
OUString
&
rServiceName
)
sal_Bool
SAL_CALL
SAXEventKeeperImpl
::
supportsService
(
const
OUString
&
rServiceName
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
return
SAXEventKeeperImpl_supportsService
(
rServiceName
);
return
cppu
::
supportsService
(
this
,
rServiceName
);
}
}
cssu
::
Sequence
<
OUString
>
SAL_CALL
SAXEventKeeperImpl
::
getSupportedServiceNames
(
)
cssu
::
Sequence
<
OUString
>
SAL_CALL
SAXEventKeeperImpl
::
getSupportedServiceNames
(
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
...
...
xmlsecurity/source/framework/signaturecreatorimpl.cxx
Dosyayı görüntüle @
92f162eb
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
#include <com/sun/star/xml/wrapper/XXMLElementWrapper.hpp>
#include <com/sun/star/xml/wrapper/XXMLElementWrapper.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <comphelper/processfactory.hxx>
#include <comphelper/processfactory.hxx>
#include <cppuhelper/supportsservice.hxx>
using
namespace
com
::
sun
::
star
::
uno
;
using
namespace
com
::
sun
::
star
::
uno
;
namespace
cssu
=
com
::
sun
::
star
::
uno
;
namespace
cssu
=
com
::
sun
::
star
::
uno
;
...
@@ -231,12 +232,6 @@ OUString SignatureCreatorImpl_getImplementationName ()
...
@@ -231,12 +232,6 @@ OUString SignatureCreatorImpl_getImplementationName ()
return
OUString
(
IMPLEMENTATION_NAME
);
return
OUString
(
IMPLEMENTATION_NAME
);
}
}
sal_Bool
SAL_CALL
SignatureCreatorImpl_supportsService
(
const
OUString
&
ServiceName
)
throw
(
cssu
::
RuntimeException
)
{
return
ServiceName
==
SERVICE_NAME
;
}
cssu
::
Sequence
<
OUString
>
SAL_CALL
SignatureCreatorImpl_getSupportedServiceNames
(
)
cssu
::
Sequence
<
OUString
>
SAL_CALL
SignatureCreatorImpl_getSupportedServiceNames
(
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
...
@@ -260,11 +255,13 @@ OUString SAL_CALL SignatureCreatorImpl::getImplementationName( )
...
@@ -260,11 +255,13 @@ OUString SAL_CALL SignatureCreatorImpl::getImplementationName( )
{
{
return
SignatureCreatorImpl_getImplementationName
();
return
SignatureCreatorImpl_getImplementationName
();
}
}
sal_Bool
SAL_CALL
SignatureCreatorImpl
::
supportsService
(
const
OUString
&
rServiceName
)
sal_Bool
SAL_CALL
SignatureCreatorImpl
::
supportsService
(
const
OUString
&
rServiceName
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
return
SignatureCreatorImpl_supportsService
(
rServiceName
);
return
cppu
::
supportsService
(
this
,
rServiceName
);
}
}
cssu
::
Sequence
<
OUString
>
SAL_CALL
SignatureCreatorImpl
::
getSupportedServiceNames
(
)
cssu
::
Sequence
<
OUString
>
SAL_CALL
SignatureCreatorImpl
::
getSupportedServiceNames
(
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
...
...
xmlsecurity/source/framework/signatureverifierimpl.cxx
Dosyayı görüntüle @
92f162eb
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
#include <com/sun/star/xml/wrapper/XXMLElementWrapper.hpp>
#include <com/sun/star/xml/wrapper/XXMLElementWrapper.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <comphelper/processfactory.hxx>
#include <comphelper/processfactory.hxx>
#include <cppuhelper/supportsservice.hxx>
namespace
cssu
=
com
::
sun
::
star
::
uno
;
namespace
cssu
=
com
::
sun
::
star
::
uno
;
namespace
cssl
=
com
::
sun
::
star
::
lang
;
namespace
cssl
=
com
::
sun
::
star
::
lang
;
...
@@ -177,12 +178,6 @@ OUString SignatureVerifierImpl_getImplementationName ()
...
@@ -177,12 +178,6 @@ OUString SignatureVerifierImpl_getImplementationName ()
return
OUString
(
IMPLEMENTATION_NAME
);
return
OUString
(
IMPLEMENTATION_NAME
);
}
}
sal_Bool
SAL_CALL
SignatureVerifierImpl_supportsService
(
const
OUString
&
ServiceName
)
throw
(
cssu
::
RuntimeException
)
{
return
ServiceName
==
SERVICE_NAME
;
}
cssu
::
Sequence
<
OUString
>
SAL_CALL
SignatureVerifierImpl_getSupportedServiceNames
(
)
cssu
::
Sequence
<
OUString
>
SAL_CALL
SignatureVerifierImpl_getSupportedServiceNames
(
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
...
@@ -206,11 +201,13 @@ OUString SAL_CALL SignatureVerifierImpl::getImplementationName( )
...
@@ -206,11 +201,13 @@ OUString SAL_CALL SignatureVerifierImpl::getImplementationName( )
{
{
return
SignatureVerifierImpl_getImplementationName
();
return
SignatureVerifierImpl_getImplementationName
();
}
}
sal_Bool
SAL_CALL
SignatureVerifierImpl
::
supportsService
(
const
OUString
&
rServiceName
)
sal_Bool
SAL_CALL
SignatureVerifierImpl
::
supportsService
(
const
OUString
&
rServiceName
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
return
SignatureVerifierImpl_supportsService
(
rServiceName
);
return
cppu
::
supportsService
(
this
,
rServiceName
);
}
}
cssu
::
Sequence
<
OUString
>
SAL_CALL
SignatureVerifierImpl
::
getSupportedServiceNames
(
)
cssu
::
Sequence
<
OUString
>
SAL_CALL
SignatureVerifierImpl
::
getSupportedServiceNames
(
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
...
...
xmlsecurity/source/xmlsec/nss/nssinitializer.cxx
Dosyayı görüntüle @
92f162eb
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
#include <com/sun/star/mozilla/XMozillaBootstrap.hpp>
#include <com/sun/star/mozilla/XMozillaBootstrap.hpp>
#include <com/sun/star/xml/crypto/DigestID.hpp>
#include <com/sun/star/xml/crypto/DigestID.hpp>
#include <com/sun/star/xml/crypto/CipherID.hpp>
#include <com/sun/star/xml/crypto/CipherID.hpp>
#include <cppuhelper/supportsservice.hxx>
#include <officecfg/Office/Common.hxx>
#include <officecfg/Office/Common.hxx>
...
@@ -477,12 +478,6 @@ OUString ONSSInitializer_getImplementationName ()
...
@@ -477,12 +478,6 @@ OUString ONSSInitializer_getImplementationName ()
return
OUString
(
IMPLEMENTATION_NAME
);
return
OUString
(
IMPLEMENTATION_NAME
);
}
}
sal_Bool
SAL_CALL
ONSSInitializer_supportsService
(
const
OUString
&
ServiceName
)
throw
(
cssu
::
RuntimeException
)
{
return
ServiceName
==
NSS_SERVICE_NAME
;
}
cssu
::
Sequence
<
OUString
>
SAL_CALL
ONSSInitializer_getSupportedServiceNames
(
)
cssu
::
Sequence
<
OUString
>
SAL_CALL
ONSSInitializer_getSupportedServiceNames
(
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
...
@@ -504,11 +499,13 @@ OUString SAL_CALL ONSSInitializer::getImplementationName()
...
@@ -504,11 +499,13 @@ OUString SAL_CALL ONSSInitializer::getImplementationName()
{
{
return
ONSSInitializer_getImplementationName
();
return
ONSSInitializer_getImplementationName
();
}
}
sal_Bool
SAL_CALL
ONSSInitializer
::
supportsService
(
const
OUString
&
rServiceName
)
sal_Bool
SAL_CALL
ONSSInitializer
::
supportsService
(
const
OUString
&
rServiceName
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
return
ONSSInitializer_supportsService
(
rServiceName
);
return
cppu
::
supportsService
(
this
,
rServiceName
);
}
}
cssu
::
Sequence
<
OUString
>
SAL_CALL
ONSSInitializer
::
getSupportedServiceNames
(
)
cssu
::
Sequence
<
OUString
>
SAL_CALL
ONSSInitializer
::
getSupportedServiceNames
(
)
throw
(
cssu
::
RuntimeException
)
throw
(
cssu
::
RuntimeException
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment