summaryrefslogtreecommitdiff
path: root/include/ucbhelper/resultsethelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/ucbhelper/resultsethelper.hxx')
-rw-r--r--include/ucbhelper/resultsethelper.hxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/include/ucbhelper/resultsethelper.hxx b/include/ucbhelper/resultsethelper.hxx
index 5c7f9e23e1d3..2442066c4597 100644
--- a/include/ucbhelper/resultsethelper.hxx
+++ b/include/ucbhelper/resultsethelper.hxx
@@ -136,27 +136,27 @@ public:
// XInterface
virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType )
- throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw( css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL acquire()
- throw() SAL_OVERRIDE;
+ throw() override;
virtual void SAL_CALL release()
- throw() SAL_OVERRIDE;
+ throw() override;
// XTypeProvider
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL
getImplementationId()
- throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw( com::sun::star::uno::RuntimeException, std::exception ) override;
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL
getTypes()
- throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw( com::sun::star::uno::RuntimeException, std::exception ) override;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
- throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw( css::uno::RuntimeException, std::exception ) override;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
- throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw( css::uno::RuntimeException, std::exception ) override;
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
- throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw( css::uno::RuntimeException, std::exception ) override;
static OUString getImplementationName_Static();
static css::uno::Sequence< OUString > getSupportedServiceNames_Static();
@@ -164,34 +164,34 @@ public:
// XComponent ( base class of XDynamicResultSet )
virtual void SAL_CALL
dispose()
- throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw( com::sun::star::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL
addEventListener( const com::sun::star::uno::Reference<
com::sun::star::lang::XEventListener >& Listener )
- throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw( com::sun::star::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL
removeEventListener( const com::sun::star::uno::Reference<
com::sun::star::lang::XEventListener >& Listener )
- throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw( com::sun::star::uno::RuntimeException, std::exception ) override;
// XDynamicResultSet
virtual com::sun::star::uno::Reference<
com::sun::star::sdbc::XResultSet > SAL_CALL
getStaticResultSet()
throw( com::sun::star::ucb::ListenerAlreadySetException,
- com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ com::sun::star::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL
setListener( const com::sun::star::uno::Reference<
com::sun::star::ucb::XDynamicResultSetListener >& Listener )
throw( com::sun::star::ucb::ListenerAlreadySetException,
- com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ com::sun::star::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL
connectToCache( const com::sun::star::uno::Reference<
com::sun::star::ucb::XDynamicResultSet > & xCache )
throw( com::sun::star::ucb::ListenerAlreadySetException,
com::sun::star::ucb::AlreadyInitializedException,
com::sun::star::ucb::ServiceNotFoundException,
- com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ com::sun::star::uno::RuntimeException, std::exception ) override;
/**
* The implementation of this method always returns 0. Override this
@@ -199,7 +199,7 @@ public:
*/
virtual sal_Int16 SAL_CALL
getCapabilities()
- throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw( com::sun::star::uno::RuntimeException, std::exception ) override;
};