summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/package
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/package')
-rw-r--r--ucb/source/ucp/package/pkgcontent.hxx30
-rw-r--r--ucb/source/ucp/package/pkgdatasupplier.hxx22
-rw-r--r--ucb/source/ucp/package/pkgprovider.cxx10
-rw-r--r--ucb/source/ucp/package/pkgprovider.hxx18
-rw-r--r--ucb/source/ucp/package/pkgresultset.hxx4
5 files changed, 42 insertions, 42 deletions
diff --git a/ucb/source/ucp/package/pkgcontent.hxx b/ucb/source/ucp/package/pkgcontent.hxx
index 18b73a99d461..b303e8541001 100644
--- a/ucb/source/ucp/package/pkgcontent.hxx
+++ b/ucb/source/ucp/package/pkgcontent.hxx
@@ -135,11 +135,11 @@ private:
virtual com::sun::star::uno::Sequence< com::sun::star::beans::Property >
getProperties( const com::sun::star::uno::Reference<
- com::sun::star::ucb::XCommandEnvironment > & xEnv );
+ com::sun::star::ucb::XCommandEnvironment > & xEnv ) SAL_OVERRIDE;
virtual com::sun::star::uno::Sequence< com::sun::star::ucb::CommandInfo >
getCommands( const com::sun::star::uno::Reference<
- com::sun::star::ucb::XCommandEnvironment > & xEnv );
- virtual OUString getParentURL();
+ com::sun::star::ucb::XCommandEnvironment > & xEnv ) SAL_OVERRIDE;
+ virtual OUString getParentURL() SAL_OVERRIDE;
static ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRow >
getPropertyValues( const ::com::sun::star::uno::Reference<
@@ -256,30 +256,30 @@ 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( ::com::sun::star::uno::RuntimeException, std::exception );
+ throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
getSupportedServiceNames()
- throw( ::com::sun::star::uno::RuntimeException, std::exception );
+ throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XContent
virtual OUString SAL_CALL
getContentType()
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XCommandProcessor
virtual com::sun::star::uno::Any SAL_CALL
@@ -289,10 +289,10 @@ public:
com::sun::star::ucb::XCommandEnvironment >& Environment )
throw( com::sun::star::uno::Exception,
com::sun::star::ucb::CommandAbortedException,
- com::sun::star::uno::RuntimeException, std::exception );
+ com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL
abort( sal_Int32 CommandId )
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// Additional interfaces
@@ -302,11 +302,11 @@ public:
virtual com::sun::star::uno::Sequence<
com::sun::star::ucb::ContentInfo > SAL_CALL
queryCreatableContentsInfo()
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual com::sun::star::uno::Reference<
com::sun::star::ucb::XContent > SAL_CALL
createNewContent( const com::sun::star::ucb::ContentInfo& Info )
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// Non-interface methods.
diff --git a/ucb/source/ucp/package/pkgdatasupplier.hxx b/ucb/source/ucp/package/pkgdatasupplier.hxx
index e7b0a30db042..e185755a95bc 100644
--- a/ucb/source/ucp/package/pkgdatasupplier.hxx
+++ b/ucb/source/ucp/package/pkgdatasupplier.hxx
@@ -39,27 +39,27 @@ public:
sal_Int32 nOpenMode );
virtual ~DataSupplier();
- virtual OUString queryContentIdentifierString( sal_uInt32 nIndex );
+ virtual OUString queryContentIdentifierString( sal_uInt32 nIndex ) SAL_OVERRIDE;
virtual com::sun::star::uno::Reference<
com::sun::star::ucb::XContentIdentifier >
- queryContentIdentifier( sal_uInt32 nIndex );
+ queryContentIdentifier( sal_uInt32 nIndex ) SAL_OVERRIDE;
virtual com::sun::star::uno::Reference< com::sun::star::ucb::XContent >
- queryContent( sal_uInt32 nIndex );
+ queryContent( sal_uInt32 nIndex ) SAL_OVERRIDE;
- virtual bool getResult( sal_uInt32 nIndex );
+ virtual bool getResult( sal_uInt32 nIndex ) SAL_OVERRIDE;
- virtual sal_uInt32 totalCount();
- virtual sal_uInt32 currentCount();
- virtual bool isCountFinal();
+ virtual sal_uInt32 totalCount() SAL_OVERRIDE;
+ virtual sal_uInt32 currentCount() SAL_OVERRIDE;
+ virtual bool isCountFinal() SAL_OVERRIDE;
virtual com::sun::star::uno::Reference< com::sun::star::sdbc::XRow >
- queryPropertyValues( sal_uInt32 nIndex );
- virtual void releasePropertyValues( sal_uInt32 nIndex );
+ queryPropertyValues( sal_uInt32 nIndex ) SAL_OVERRIDE;
+ virtual void releasePropertyValues( sal_uInt32 nIndex ) SAL_OVERRIDE;
- virtual void close();
+ virtual void close() SAL_OVERRIDE;
virtual void validate()
- throw( com::sun::star::ucb::ResultSetException );
+ throw( com::sun::star::ucb::ResultSetException ) SAL_OVERRIDE;
OUString assembleChildURL( const OUString& aName );
};
diff --git a/ucb/source/ucp/package/pkgprovider.cxx b/ucb/source/ucp/package/pkgprovider.cxx
index 0b014797bdbe..04103c8f7f49 100644
--- a/ucb/source/ucp/package/pkgprovider.cxx
+++ b/ucb/source/ucp/package/pkgprovider.cxx
@@ -65,23 +65,23 @@ public:
// XInterface
virtual uno::Any SAL_CALL
queryInterface( const uno::Type& aType )
- throw( uno::RuntimeException, std::exception )
+ throw( uno::RuntimeException, std::exception ) SAL_OVERRIDE
{ return m_xNA->queryInterface( aType ); }
virtual void SAL_CALL
- acquire() throw()
+ acquire() throw() SAL_OVERRIDE
{ OWeakObject::acquire(); }
virtual void SAL_CALL
- release() throw()
+ release() throw() SAL_OVERRIDE
{ OWeakObject::release(); }
// XHierarchicalNameAccess
virtual uno::Any SAL_CALL
getByHierarchicalName( const OUString& aName )
- throw( container::NoSuchElementException, uno::RuntimeException, std::exception )
+ throw( container::NoSuchElementException, uno::RuntimeException, std::exception ) SAL_OVERRIDE
{ return m_xNA->getByHierarchicalName( aName ); }
virtual sal_Bool SAL_CALL
hasByHierarchicalName( const OUString& aName )
- throw( uno::RuntimeException, std::exception )
+ throw( uno::RuntimeException, std::exception ) SAL_OVERRIDE
{ return m_xNA->hasByHierarchicalName( aName ); }
};
diff --git a/ucb/source/ucp/package/pkgprovider.hxx b/ucb/source/ucp/package/pkgprovider.hxx
index 3b0ed9e2fae2..8837d9b59cf0 100644
--- a/ucb/source/ucp/package/pkgprovider.hxx
+++ b/ucb/source/ucp/package/pkgprovider.hxx
@@ -62,25 +62,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();
@@ -95,7 +95,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;
// Additional interfaces
diff --git a/ucb/source/ucp/package/pkgresultset.hxx b/ucb/source/ucp/package/pkgresultset.hxx
index 4e16e0213e12..ceb926f5a5d0 100644
--- a/ucb/source/ucp/package/pkgresultset.hxx
+++ b/ucb/source/ucp/package/pkgresultset.hxx
@@ -33,8 +33,8 @@ class DynamicResultSet : public ::ucbhelper::ResultSetImplHelper
com::sun::star::ucb::XCommandEnvironment > m_xEnv;
private:
- virtual void initStatic();
- virtual void initDynamic();
+ virtual void initStatic() SAL_OVERRIDE;
+ virtual void initDynamic() SAL_OVERRIDE;
public:
DynamicResultSet(