diff options
author | Noel Grandin <noel@peralex.com> | 2016-10-05 11:48:37 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-10-05 11:48:37 +0200 |
commit | 315c06d79256ddcc50c4817a2c93c161a01c9f8d (patch) | |
tree | 8d46e0efa24ed21fc82b4db44946ee22e148598d /sc/source/ui/drawfunc | |
parent | c47c1e3551e9bdfb92bbbb8bc87b5e2314449efd (diff) |
loplugin:unnecessaryoverride in sc
Change-Id: I149e65eb605d405be54c7340ff2e668cc18c7552
Diffstat (limited to 'sc/source/ui/drawfunc')
-rw-r--r-- | sc/source/ui/drawfunc/fuconstr.cxx | 5 | ||||
-rw-r--r-- | sc/source/ui/drawfunc/fusel.cxx | 30 |
2 files changed, 0 insertions, 35 deletions
diff --git a/sc/source/ui/drawfunc/fuconstr.cxx b/sc/source/ui/drawfunc/fuconstr.cxx index f8920c2dd0d8..343262832353 100644 --- a/sc/source/ui/drawfunc/fuconstr.cxx +++ b/sc/source/ui/drawfunc/fuconstr.cxx @@ -58,11 +58,6 @@ FuConstruct::~FuConstruct() { } -sal_uInt8 FuConstruct::Command(const CommandEvent& rCEvt) -{ - return FuDraw::Command( rCEvt ); -} - // Calculate and return offset at current zoom. rInOutPos is adjusted by // the calculated offset. rInOutPos now points to the position than when // scaled to 100% actually would be at the position you see at the current zoom diff --git a/sc/source/ui/drawfunc/fusel.cxx b/sc/source/ui/drawfunc/fusel.cxx index 9cc6382e58f0..aa0ff4b41bdd 100644 --- a/sc/source/ui/drawfunc/fusel.cxx +++ b/sc/source/ui/drawfunc/fusel.cxx @@ -79,11 +79,6 @@ FuSelection::~FuSelection() { } -sal_uInt8 FuSelection::Command(const CommandEvent& rCEvt) -{ - return FuDraw::Command( rCEvt ); -} - /************************************************************************* |* |* MouseButtonDown-event @@ -572,29 +567,4 @@ bool FuSelection::MouseButtonUp(const MouseEvent& rMEvt) return bReturn; } -/************************************************************************* -|* -|* Function aktivieren -|* -\************************************************************************/ - -void FuSelection::Activate() -{ - FuDraw::Activate(); -} - -/************************************************************************* -|* -|* Function deaktivieren -|* -\************************************************************************/ - -void FuSelection::Deactivate() -{ - /************************************************************************** - * Hide Cursor - **************************************************************************/ - FuDraw::Deactivate(); -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |