summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-10-11 10:47:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-12 06:31:56 +0000
commita9717054dcb59010c95bdbfdb440ac12e8703796 (patch)
tree1d6ad846800d036144d597275aa2b15b8b0fd2c8 /cui
parent29fe57afd79c96c5ff251c2468ababda5e506564 (diff)
loplugin:unnecessaryoverride in connectivity/cui
Change-Id: I5ec4eb2f74036e42851333e3d669dbea58c2490a Reviewed-on: https://gerrit.libreoffice.org/29687 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/customize/acccfg.cxx9
-rw-r--r--cui/source/dialogs/hltpbase.cxx5
-rw-r--r--cui/source/inc/acccfg.hxx4
-rw-r--r--cui/source/inc/hltpbase.hxx2
4 files changed, 0 insertions, 20 deletions
diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx
index c3f14d1c6adf..ae7d1cc5d26f 100644
--- a/cui/source/customize/acccfg.cxx
+++ b/cui/source/customize/acccfg.cxx
@@ -675,15 +675,6 @@ VCL_BUILDER_DECL_FACTORY(SfxAccCfgTabListBox)
rRet = VclPtr<SfxAccCfgTabListBox_Impl>::Create(pParent, nWinBits);
}
-void SfxAccCfgTabListBox_Impl::InitEntry(SvTreeListEntry* pEntry,
- const OUString& rText,
- const Image& rImage1,
- const Image& rImage2,
- SvLBoxButtonKind eButtonKind)
-{
- SvTabListBox::InitEntry(pEntry, rText, rImage1, rImage2, eButtonKind);
-}
-
SfxAccCfgTabListBox_Impl::~SfxAccCfgTabListBox_Impl()
{
disposeOnce();
diff --git a/cui/source/dialogs/hltpbase.cxx b/cui/source/dialogs/hltpbase.cxx
index 226e7a6a6c62..bb63d88baddc 100644
--- a/cui/source/dialogs/hltpbase.cxx
+++ b/cui/source/dialogs/hltpbase.cxx
@@ -97,11 +97,6 @@ sal_Int8 SvxHyperURLBox::ExecuteDrop( const ExecuteDropEvent& rEvt )
return nRet;
}
-void SvxHyperURLBox::Modify()
-{
- SvtURLBox::Modify();
-}
-
//# Hyperlink-Dialog: Tabpages-Baseclass #
SvxHyperlinkTabPageBase::SvxHyperlinkTabPageBase ( vcl::Window *pParent,
diff --git a/cui/source/inc/acccfg.hxx b/cui/source/inc/acccfg.hxx
index 24b92c90c15a..d59cdc06332c 100644
--- a/cui/source/inc/acccfg.hxx
+++ b/cui/source/inc/acccfg.hxx
@@ -57,10 +57,6 @@ class SfxAccCfgTabListBox_Impl : public SvTabListBox
void KeyInput( const KeyEvent &rKEvt ) override;
-protected:
- virtual void InitEntry(SvTreeListEntry*, const OUString&, const Image&,
- const Image&, SvLBoxButtonKind eButtonKind) override;
-
public:
SfxAccCfgTabListBox_Impl(vcl::Window *pParent, WinBits nStyle)
: SvTabListBox(pParent, nStyle)
diff --git a/cui/source/inc/hltpbase.hxx b/cui/source/inc/hltpbase.hxx
index 4f24e11e0d04..642d28129b3c 100644
--- a/cui/source/inc/hltpbase.hxx
+++ b/cui/source/inc/hltpbase.hxx
@@ -53,8 +53,6 @@ protected:
virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) override;
virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ) override;
- virtual void Modify() override;
-
public:
SvxHyperURLBox( vcl::Window* pParent, INetProtocol eSmart = INetProtocol::File );