summaryrefslogtreecommitdiff
path: root/sc/source/ui/view
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-14 16:32:07 +0200
committerNoel Grandin <noel@peralex.com>2016-01-15 09:36:42 +0200
commit098462c6f69c40422c74cef8f052b7b1ff0c90e8 (patch)
treeb8d3e6f848b18753c9fbd91468b8094b029af742 /sc/source/ui/view
parentf19e32b101d56ceb7215a6a9d45d39a2cd264189 (diff)
loplugin:unusedmethods unused return value in sc
Change-Id: I3ccc98d2e042120093e2e8508518681588692393
Diffstat (limited to 'sc/source/ui/view')
-rw-r--r--sc/source/ui/view/spellcheckcontext.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/sc/source/ui/view/spellcheckcontext.cxx b/sc/source/ui/view/spellcheckcontext.cxx
index a01df2221058..ac615fdbe52e 100644
--- a/sc/source/ui/view/spellcheckcontext.cxx
+++ b/sc/source/ui/view/spellcheckcontext.cxx
@@ -39,14 +39,6 @@ void SpellCheckContext::CellPos::reset()
mnRow = 0;
}
-bool SpellCheckContext::CellPos::operator< (const CellPos& r) const
-{
- if (mnCol != r.mnCol)
- return mnCol < r.mnCol;
-
- return mnRow < r.mnRow;
-}
-
bool SpellCheckContext::CellPos::operator== (const CellPos& r) const
{
return mnCol == r.mnCol && mnRow == r.mnRow;