diff options
author | Noel <noelgrandin@gmail.com> | 2020-11-03 18:25:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-04 06:34:37 +0100 |
commit | eeed9103350d886f5913aed9b525d863a421dffa (patch) | |
tree | c2cc52543e7378e83f328aae2131c9777cc315b6 /sc | |
parent | 81fe31d2c8977791f9b90ab1da4fbb1a778f87fb (diff) |
loplugin:unusedmethods
Change-Id: I58fb6477222a26455f5db0a7d972c46f290c085c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105261
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/hints.hxx | 1 | ||||
-rw-r--r-- | sc/source/ui/inc/inputwin.hxx | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/sc/inc/hints.hxx b/sc/inc/hints.hxx index 203beb97de16..88fff30b4b2f 100644 --- a/sc/inc/hints.hxx +++ b/sc/inc/hints.hxx @@ -36,7 +36,6 @@ public: ScPaintHint( const ScRange& rRng, PaintPartFlags nPaint ); virtual ~ScPaintHint() override; - void SetPrintFlag(bool bSet) { bPrint = bSet; } SCCOL GetStartCol() const { return aRange.aStart.Col(); } SCROW GetStartRow() const { return aRange.aStart.Row(); } SCTAB GetStartTab() const { return aRange.aStart.Tab(); } diff --git a/sc/source/ui/inc/inputwin.hxx b/sc/source/ui/inc/inputwin.hxx index fc1843c405ff..03a6cf359941 100644 --- a/sc/source/ui/inc/inputwin.hxx +++ b/sc/source/ui/inc/inputwin.hxx @@ -225,8 +225,6 @@ public: virtual void StopEditEngine(bool bAll) override; virtual void TextGrabFocus() override; - void GrabFocus() { mxTextWnd->GrabFocus(); } - vcl::Window& GetVclParent() { return mrParent; } private: |