summaryrefslogtreecommitdiff
path: root/tools/source/memtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-09-02 23:16:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-09-05 10:54:19 +0100
commitaf60795f76f04e5a0315eeaa4cb9c5a90f4ae90c (patch)
tree529f6d32a19fc394afec567ad246dfb3f5522538 /tools/source/memtools
parent2e28244ad3cf526b99b1e555526b26bf89c5ce8d (diff)
callcatcher: some more unused code
Diffstat (limited to 'tools/source/memtools')
-rw-r--r--tools/source/memtools/unqidx.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/tools/source/memtools/unqidx.cxx b/tools/source/memtools/unqidx.cxx
index 9195c820dc6c..a60777d1b3f6 100644
--- a/tools/source/memtools/unqidx.cxx
+++ b/tools/source/memtools/unqidx.cxx
@@ -145,28 +145,6 @@ void* UniqueIndex::Remove( sal_uIntPtr nIndex )
/*************************************************************************
|*
-|* UniqueIndex::Replace()
-|*
-*************************************************************************/
-
-void* UniqueIndex::Replace( sal_uIntPtr nIndex, void* p )
-{
- // NULL-Pointer ist nicht erlaubt
- if ( !p )
- return NULL;
-
- // Ist Index zulaessig
- if ( IsIndexValid( nIndex ) )
- {
- // Index-Eintrag ersetzen und alten zurueckgeben
- return Container::Replace( p, nIndex-nStartIndex );
- }
- else
- return NULL;
-}
-
-/*************************************************************************
-|*
|* UniqueIndex::Get()
|*
*************************************************************************/