summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx b/connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx
index f33069f907c2..dbd86b2e9afa 100644
--- a/connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx
+++ b/connectivity/source/drivers/postgresql/pq_sequenceresultset.hxx
@@ -63,11 +63,11 @@ protected:
/** mutex should be locked before called
*/
virtual void checkClosed()
- throw ( com::sun::star::sdbc::SQLException, com::sun::star::uno::RuntimeException );
+ throw ( com::sun::star::sdbc::SQLException, com::sun::star::uno::RuntimeException ) SAL_OVERRIDE;
/** unchecked, acquire mutex before calling
*/
- virtual ::com::sun::star::uno::Any getValue( sal_Int32 columnIndex );
+ virtual ::com::sun::star::uno::Any getValue( sal_Int32 columnIndex ) SAL_OVERRIDE;
public:
SequenceResultSet(
@@ -81,15 +81,15 @@ public:
public: // XCloseable
virtual void SAL_CALL close( )
- throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception);
+ throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
public: // XResultSetMetaDataSupplier
virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData > SAL_CALL getMetaData( )
- throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception);
+ throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
public: // XColumnLocate
virtual sal_Int32 SAL_CALL findColumn( const OUString& columnName )
- throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception);
+ throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
}