summaryrefslogtreecommitdiff
path: root/tools/source/memtools/multisel.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source/memtools/multisel.cxx')
-rw-r--r--tools/source/memtools/multisel.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/tools/source/memtools/multisel.cxx b/tools/source/memtools/multisel.cxx
index 3fdf5d520934..61a44b1bfce3 100644
--- a/tools/source/memtools/multisel.cxx
+++ b/tools/source/memtools/multisel.cxx
@@ -133,19 +133,6 @@ MultiSelection& MultiSelection::operator= ( const MultiSelection& rOrig )
return *this;
}
-bool MultiSelection::operator== ( MultiSelection& rWith )
-{
- if ( aTotRange != rWith.aTotRange || nSelCount != rWith.nSelCount ||
- aSels.size() != rWith.aSels.size() )
- return false;
-
- // compare the sub selections
- for ( size_t n = 0; n < aSels.size(); ++n )
- if ( *aSels[ n ] != *rWith.aSels[ n ] )
- return false;
- return true;
-}
-
void MultiSelection::SelectAll( bool bSelect )
{
ImplClear();