summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/tdoc/tdoc_provider.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/tdoc/tdoc_provider.hxx')
-rw-r--r--ucb/source/ucp/tdoc/tdoc_provider.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_provider.hxx b/ucb/source/ucp/tdoc/tdoc_provider.hxx
index 62f01aab57e6..8eae66190eab 100644
--- a/ucb/source/ucp/tdoc/tdoc_provider.hxx
+++ b/ucb/source/ucp/tdoc/tdoc_provider.hxx
@@ -69,25 +69,25 @@ public:
// XInterface
virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType )
- throw( css::uno::RuntimeException, std::exception );
+ throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL acquire()
- throw();
+ throw() SAL_OVERRIDE;
virtual void SAL_CALL release()
- throw();
+ throw() SAL_OVERRIDE;
// XTypeProvider
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId()
- throw( css::uno::RuntimeException, std::exception );
+ throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes()
- throw( css::uno::RuntimeException, std::exception );
+ throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
- throw( css::uno::RuntimeException, std::exception );
+ throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
- throw( css::uno::RuntimeException, std::exception );
+ throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
- throw( css::uno::RuntimeException, std::exception );
+ throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
static OUString getImplementationName_Static();
static css::uno::Sequence< OUString > getSupportedServiceNames_Static();
@@ -102,7 +102,7 @@ public:
queryContent( const com::sun::star::uno::Reference<
com::sun::star::ucb::XContentIdentifier >& Identifier )
throw( com::sun::star::ucb::IllegalIdentifierException,
- com::sun::star::uno::RuntimeException, std::exception );
+ com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XTransientDocumentsDocumentContentFactory
virtual com::sun::star::uno::Reference<
@@ -110,7 +110,7 @@ public:
createDocumentContent( const ::com::sun::star::uno::Reference<
com::sun::star::frame::XModel >& Model )
throw ( com::sun::star::lang::IllegalArgumentException,
- com::sun::star::uno::RuntimeException, std::exception );
+ com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// Non-UNO interfaces
com::sun::star::uno::Reference< com::sun::star::embed::XStorage >
@@ -147,8 +147,8 @@ public:
queryDocumentModel( const OUString & rUri ) const;
// interface OfficeDocumentsEventListener
- virtual void notifyDocumentOpened( const OUString & rDocId );
- virtual void notifyDocumentClosed( const OUString & rDocId );
+ virtual void notifyDocumentOpened( const OUString & rDocId ) SAL_OVERRIDE;
+ virtual void notifyDocumentClosed( const OUString & rDocId ) SAL_OVERRIDE;
private:
rtl::Reference< OfficeDocumentsManager > m_xDocsMgr;