diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-11 14:59:25 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-12 19:53:52 +0000 |
commit | ea407568570d301888a0a51712356379d7b695d6 (patch) | |
tree | 9040f11712c1eac437551a2d81a0713eb420d7fe /dtrans | |
parent | 47283424b1df542b4894a164bc895858427d1a62 (diff) |
dtrans: com::sun::star->css
Change-Id: I4625a9b73c517b8187e03b11cc0546abdf338d8b
Reviewed-on: https://gerrit.libreoffice.org/18502
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'dtrans')
19 files changed, 203 insertions, 202 deletions
diff --git a/dtrans/source/cnttype/mcnttfactory.hxx b/dtrans/source/cnttype/mcnttfactory.hxx index 7ce1899baf39..971bb910e856 100644 --- a/dtrans/source/cnttype/mcnttfactory.hxx +++ b/dtrans/source/cnttype/mcnttfactory.hxx @@ -27,8 +27,8 @@ #include <com/sun/star/datatransfer/XMimeContentTypeFactory.hpp> class CMimeContentTypeFactory : public - cppu::WeakImplHelper< com::sun::star::datatransfer::XMimeContentTypeFactory, \ - com::sun::star::lang::XServiceInfo > + cppu::WeakImplHelper< css::datatransfer::XMimeContentTypeFactory, + css::lang::XServiceInfo > { public: @@ -36,19 +36,19 @@ public: // XMimeContentTypeFactory - virtual ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::XMimeContentType > SAL_CALL createMimeContentType( const OUString& aContentType ) - throw(::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + virtual css::uno::Reference< css::datatransfer::XMimeContentType > SAL_CALL createMimeContentType( const OUString& aContentType ) + throw(css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) - throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) - throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; - virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) - throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) + throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; private: ::osl::Mutex m_aMutex; diff --git a/dtrans/source/cnttype/mcnttype.hxx b/dtrans/source/cnttype/mcnttype.hxx |