summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc/UpdateHelperImpl.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 16:04:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:29 +0200
commitb36963c0a6a09f70ca6d8d607dd3249a3496497d (patch)
tree33e06dc8d227957cb31355277fb5cf20b9918628 /dbaccess/source/ui/misc/UpdateHelperImpl.hxx
parentb08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff)
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'dbaccess/source/ui/misc/UpdateHelperImpl.hxx')
-rw-r--r--dbaccess/source/ui/misc/UpdateHelperImpl.hxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/dbaccess/source/ui/misc/UpdateHelperImpl.hxx b/dbaccess/source/ui/misc/UpdateHelperImpl.hxx
index 1f3d28b3d486..54f9569d38bf 100644
--- a/dbaccess/source/ui/misc/UpdateHelperImpl.hxx
+++ b/dbaccess/source/ui/misc/UpdateHelperImpl.hxx
@@ -40,39 +40,39 @@ namespace dbaui
{
}
virtual ~ORowUpdateHelper() {}
- virtual void updateString(sal_Int32 _nPos, const OUString& _sValue) SAL_OVERRIDE
+ virtual void updateString(sal_Int32 _nPos, const OUString& _sValue) override
{
m_xRowUpdate->updateString(_nPos, _sValue);
}
- virtual void updateDouble(sal_Int32 _nPos,const double& _nValue) SAL_OVERRIDE
+ virtual void updateDouble(sal_Int32 _nPos,const double& _nValue) override
{
m_xRowUpdate->updateDouble(_nPos, _nValue);
}
- virtual void updateDate(sal_Int32 _nPos,const css::util::Date& _nValue) SAL_OVERRIDE
+ virtual void updateDate(sal_Int32 _nPos,const css::util::Date& _nValue) override
{
m_xRowUpdate->updateDate(_nPos, _nValue);
}
- virtual void updateTime(sal_Int32 _nPos,const css::util::Time& _nValue) SAL_OVERRIDE
+ virtual void updateTime(sal_Int32 _nPos,const css::util::Time& _nValue) override
{
m_xRowUpdate->updateTime(_nPos, _nValue);
}
- virtual void updateTimestamp(sal_Int32 _nPos,const css::util::DateTime& _nValue) SAL_OVERRIDE
+ virtual void updateTimestamp(sal_Int32 _nPos,const css::util::DateTime& _nValue) override
{
m_xRowUpdate->updateTimestamp(_nPos, _nValue);
}
- virtual void updateInt(sal_Int32 _nPos,const sal_Int32& _nValue) SAL_OVERRIDE
+ virtual void updateInt(sal_Int32 _nPos,const sal_Int32& _nValue) override
{
m_xRowUpdate->updateInt(_nPos, _nValue);
}
- virtual void updateNull(sal_Int32 _nPos, ::sal_Int32) SAL_OVERRIDE
+ virtual void updateNull(sal_Int32 _nPos, ::sal_Int32) override
{
m_xRowUpdate->updateNull(_nPos);
}
- virtual void moveToInsertRow() SAL_OVERRIDE
+ virtual void moveToInsertRow() override
{
m_xResultSetUpdate->moveToInsertRow();
}
- virtual void insertRow() SAL_OVERRIDE
+ virtual void insertRow() override
{
m_xResultSetUpdate->insertRow();
}
@@ -90,38 +90,38 @@ namespace dbaui
{
}
virtual ~OParameterUpdateHelper() {}
- virtual void updateString(sal_Int32 _nPos, const OUString& _sValue) SAL_OVERRIDE
+ virtual void updateString(sal_Int32 _nPos, const OUString& _sValue) override
{
m_xParameters->setString(_nPos, _sValue);
}
- virtual void updateDouble(sal_Int32 _nPos,const double& _nValue) SAL_OVERRIDE
+ virtual void updateDouble(sal_Int32 _nPos,const double& _nValue) override
{
m_xParameters->setDouble(_nPos, _nValue);
}
- virtual void updateDate(sal_Int32 _nPos,const css::util::Date& _nValue) SAL_OVERRIDE
+ virtual void updateDate(sal_Int32 _nPos,const css::util::Date& _nValue) override
{
m_xParameters->setDate(_nPos, _nValue);
}
- virtual void updateTime(sal_Int32 _nPos,const css::util::Time& _nValue) SAL_OVERRIDE
+ virtual void updateTime(sal_Int32 _nPos,const css::util::Time& _nValue) override
{
m_xParameters->setTime(_nPos, _nValue);
}
- virtual void updateTimestamp(sal_Int32 _nPos,const css::util::DateTime& _nValue) SAL_OVERRIDE
+ virtual void updateTimestamp(sal_Int32 _nPos,const css::util::DateTime& _nValue) override
{
m_xParameters->setTimestamp(_nPos, _nValue);
}
- virtual void updateInt(sal_Int32 _nPos,const sal_Int32& _nValue) SAL_OVERRIDE
+ virtual void updateInt(sal_Int32 _nPos,const sal_Int32& _nValue) override
{
m_xParameters->setInt(_nPos, _nValue);
}
- virtual void updateNull(sal_Int32 _nPos, ::sal_Int32 sqlType) SAL_OVERRIDE
+ virtual void updateNull(sal_Int32 _nPos, ::sal_Int32 sqlType) override
{
m_xParameters->setNull(_nPos,sqlType);
}
- virtual void moveToInsertRow() SAL_OVERRIDE
+ virtual void moveToInsertRow() override
{
}
- virtual void insertRow() SAL_OVERRIDE
+ virtual void insertRow() override
{
m_xPrepared->executeUpdate();
}