summaryrefslogtreecommitdiff
path: root/tools/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-01-19 13:10:22 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-01-20 07:40:41 +0100
commit73139fe600fc1399ae828077981a2498cb0a0b0c (patch)
tree30ec7a9a978f262439100e27234d42667d6aacb3 /tools/source
parentd728d5d192e6f100d64ffa2e267055a451e9e403 (diff)
loplugin:unusedmethods
Change-Id: If00b0e659e1818c29ae39b89f8b4f7ea29d14986 Reviewed-on: https://gerrit.libreoffice.org/48185 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'tools/source')
-rw-r--r--tools/source/memtools/multisel.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/source/memtools/multisel.cxx b/tools/source/memtools/multisel.cxx
index b1dd66680ae6..cfb4137039ca 100644
--- a/tools/source/memtools/multisel.cxx
+++ b/tools/source/memtools/multisel.cxx
@@ -374,22 +374,6 @@ void MultiSelection::Remove( sal_Int32 nIndex )
aTotRange.Max() -= 1;
}
-sal_Int32 MultiSelection::ImplFwdUnselected()
-{
- if ( !bCurValid )
- return SFX_ENDOFSELECTION;
-
- if ( ( nCurSubSel < sal_Int32(aSels.size()) )
- && ( aSels[ nCurSubSel ].Min() <= nCurIndex )
- )
- nCurIndex = aSels[ nCurSubSel++ ].Max() + 1;
-
- if ( nCurIndex <= aTotRange.Max() )
- return nCurIndex;
- else
- return SFX_ENDOFSELECTION;
-}
-
sal_Int32 MultiSelection::FirstSelected()
{
nCurSubSel = 0;