summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_xcontainer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_xcontainer.cxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_xcontainer.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_xcontainer.cxx b/connectivity/source/drivers/postgresql/pq_xcontainer.cxx
index a020633c0c93..b4ae905bab0f 100644
--- a/connectivity/source/drivers/postgresql/pq_xcontainer.cxx
+++ b/connectivity/source/drivers/postgresql/pq_xcontainer.cxx
@@ -92,11 +92,11 @@ public:
m_event( source, makeAny( name ), newElement, makeAny(oldElement) )
{}
- virtual void fire( XEventListener * listener ) const
+ virtual void fire( XEventListener * listener ) const SAL_OVERRIDE
{
((XContainerListener*)listener)->elementReplaced( m_event );
}
- virtual Type getType() const
+ virtual Type getType() const SAL_OVERRIDE
{
return getCppuType( (Reference< XContainerListener > *)0 );
}
@@ -113,12 +113,12 @@ public:
m_event( source, makeAny( name ), newElement, Any() )
{}
- virtual void fire( XEventListener * listener ) const
+ virtual void fire( XEventListener * listener ) const SAL_OVERRIDE
{
((XContainerListener*)listener)->elementInserted( m_event );
}
- virtual Type getType() const
+ virtual Type getType() const SAL_OVERRIDE
{
return getCppuType( (Reference< XContainerListener > *)0 );
}
@@ -134,12 +134,12 @@ public:
m_event( source, makeAny( name ), Any(), Any() )
{}
- virtual void fire( XEventListener * listener ) const
+ virtual void fire( XEventListener * listener ) const SAL_OVERRIDE
{
((XContainerListener*)listener)->elementRemoved( m_event );
}
- virtual Type getType() const
+ virtual Type getType() const SAL_OVERRIDE
{
return getCppuType( (Reference< XContainerListener > *)0 );
}
@@ -248,11 +248,11 @@ public:
public:
// XEnumeration
virtual sal_Bool SAL_CALL hasMoreElements( )
- throw (::com::sun::star::uno::RuntimeException, std::exception);
+ throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Any SAL_CALL nextElement( )
throw (::com::sun::star::container::NoSuchElementException,
::com::sun::star::lang::WrappedTargetException,
- ::com::sun::star::uno::RuntimeException, std::exception);
+ ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};