summaryrefslogtreecommitdiff
path: root/include/connectivity/PColumn.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/connectivity/PColumn.hxx')
-rw-r--r--include/connectivity/PColumn.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/connectivity/PColumn.hxx b/include/connectivity/PColumn.hxx
index 9fab5038ab9c..0bbe03fea928 100644
--- a/include/connectivity/PColumn.hxx
+++ b/include/connectivity/PColumn.hxx
@@ -52,8 +52,8 @@ namespace connectivity
sal_Bool m_bIsSearchable;
protected:
- virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const;
- virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper();
+ virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const SAL_OVERRIDE;
+ virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() SAL_OVERRIDE;
virtual ~OParseColumn();
public:
@@ -73,7 +73,7 @@ namespace connectivity
const OUString& _SchemaName,
const OUString& _TableName);
- virtual void construct();
+ virtual void construct() SAL_OVERRIDE;
void setRealName(const OUString& _rName) { m_aRealName = _rName; }
void setLabel(const OUString& i_sLabel) { m_sLabel = i_sLabel; }
@@ -126,8 +126,8 @@ namespace connectivity
const sal_Bool m_bAscending;
protected:
- virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const;
- virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper();
+ virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const SAL_OVERRIDE;
+ virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() SAL_OVERRIDE;
virtual ~OOrderColumn();
public:
@@ -144,9 +144,9 @@ namespace connectivity
sal_Bool _bAscending
);
- virtual void construct();
+ virtual void construct() SAL_OVERRIDE;
- virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException, std::exception);
+ virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
using OOrderColumn_BASE::createArrayHelper;
};