summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/mysql/YTable.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/mysql/YTable.hxx')
-rw-r--r--connectivity/source/inc/mysql/YTable.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/connectivity/source/inc/mysql/YTable.hxx b/connectivity/source/inc/mysql/YTable.hxx
index 434132890cc6..b290ecb87448 100644
--- a/connectivity/source/inc/mysql/YTable.hxx
+++ b/connectivity/source/inc/mysql/YTable.hxx
@@ -49,26 +49,26 @@ namespace connectivity
@param _rNames
The column names.
*/
- virtual sdbcx::OCollection* createColumns(const TStringVector& _rNames) SAL_OVERRIDE;
+ virtual sdbcx::OCollection* createColumns(const TStringVector& _rNames) override;
/** creates the key collection for the table
@param _rNames
The key names.
*/
- virtual sdbcx::OCollection* createKeys(const TStringVector& _rNames) SAL_OVERRIDE;
+ virtual sdbcx::OCollection* createKeys(const TStringVector& _rNames) override;
/** creates the index collection for the table
@param _rNames
The index names.
*/
- virtual sdbcx::OCollection* createIndexes(const TStringVector& _rNames) SAL_OVERRIDE;
+ virtual sdbcx::OCollection* createIndexes(const TStringVector& _rNames) override;
/** Returns always "RENAME TABLE " even for views.
*
* \return The start of the rename statement.
* @see http://dev.mysql.com/doc/refman/5.1/de/rename-table.html
*/
- virtual OUString getRenameStart() const SAL_OVERRIDE;
+ virtual OUString getRenameStart() const override;
/** used to implement the creation of the array helper which is shared amongst all instances of the class.
This method needs to be implemented in derived classes.
@@ -79,8 +79,8 @@ namespace connectivity
assumes that you created an ::cppu::OPropertyArrayHelper when deleting s_pProps.
@return an pointer to the newly created array helper. Must not be NULL.
*/
- virtual ::cppu::IPropertyArrayHelper* createArrayHelper(sal_Int32 nId) const SAL_OVERRIDE;
- virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() SAL_OVERRIDE;
+ virtual ::cppu::IPropertyArrayHelper* createArrayHelper(sal_Int32 nId) const override;
+ virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() override;
public:
OMySQLTable( sdbcx::OCollection* _pTables,
@@ -96,13 +96,13 @@ namespace connectivity
);
// ODescriptor
- virtual void construct() SAL_OVERRIDE;
+ virtual void construct() override;
// com::sun::star::lang::XUnoTunnel
- virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException, std::exception) override;
static ::com::sun::star::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
// XAlterTable
- virtual void SAL_CALL alterColumnByName( const OUString& colName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& descriptor ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL alterColumnByName( const OUString& colName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& descriptor ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::uno::RuntimeException, std::exception) override;
/** returns the ALTER TABLE XXX statement
*/
OUString getAlterTableColumnPart();
@@ -112,7 +112,7 @@ namespace connectivity
void alterDefaultValue(const OUString& _sNewDefault,const OUString& _rColName);
void dropDefaultValue(const OUString& _sNewDefault);
- virtual OUString getTypeCreatePattern() const SAL_OVERRIDE;
+ virtual OUString getTypeCreatePattern() const override;
};
}
}