summaryrefslogtreecommitdiff
path: root/svtools/source/brwbox
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-10-10 15:45:53 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-11 06:08:29 +0000
commit90a0e59737d680b35d7dff1a59f66e53c13f444d (patch)
tree6e891f830b88fd71da9ca312b7c8d89219d3e0e7 /svtools/source/brwbox
parent16df731a30917a426df81d751a0bfd0ae5fcdd45 (diff)
loplugin:unnnecessaryoverride in svtools
Change-Id: I49773d9054205c223744495768e1cb05dd7b087d Reviewed-on: https://gerrit.libreoffice.org/29671 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools/source/brwbox')
-rw-r--r--svtools/source/brwbox/datwin.hxx3
-rw-r--r--svtools/source/brwbox/editbrowsebox2.cxx10
2 files changed, 1 insertions, 12 deletions
diff --git a/svtools/source/brwbox/datwin.hxx b/svtools/source/brwbox/datwin.hxx
index e8d0f8e774e8..a3e1604fc633 100644
--- a/svtools/source/brwbox/datwin.hxx
+++ b/svtools/source/brwbox/datwin.hxx
@@ -161,8 +161,7 @@ public:
void DoOutstandingInvalidations();
void Invalidate( InvalidateFlags nFlags = InvalidateFlags::NONE ) override;
void Invalidate( const Rectangle& rRect, InvalidateFlags nFlags = InvalidateFlags::NONE ) override;
- void Invalidate( const vcl::Region& rRegion, InvalidateFlags nFlags = InvalidateFlags::NONE ) override
- { Control::Invalidate( rRegion, nFlags ); }
+ using Control::Invalidate;
protected:
void StartRowDividerDrag( const Point& _rStartPos );
diff --git a/svtools/source/brwbox/editbrowsebox2.cxx b/svtools/source/brwbox/editbrowsebox2.cxx
index f0ab7d045c01..153b5c7a2219 100644
--- a/svtools/source/brwbox/editbrowsebox2.cxx
+++ b/svtools/source/brwbox/editbrowsebox2.cxx
@@ -55,11 +55,6 @@ Reference< XAccessible > EditBrowseBox::CreateAccessibleCheckBoxCell(long _nRow,
return xReturn;
}
-Reference< XAccessible > EditBrowseBox::CreateAccessibleCell( sal_Int32 _nRow, sal_uInt16 _nColumnPos )
-{
- return BrowseBox::CreateAccessibleCell( _nRow, _nColumnPos );
-}
-
sal_Int32 EditBrowseBox::GetAccessibleControlCount() const
{
return IsEditing() ? 1 : 0;
@@ -104,11 +99,6 @@ Reference< XAccessible > EditBrowseBox::CreateAccessibleControl( sal_Int32 _nInd
return m_aImpl->m_xActiveCell;
}
-Reference<XAccessible > EditBrowseBox::CreateAccessibleRowHeader( sal_Int32 _nRow )
-{
- return BrowseBox::CreateAccessibleRowHeader( _nRow );
-}
-
void EditBrowseBoxImpl::clearActiveCell()
{
try