diff options
Diffstat (limited to 'tools/source/memtools')
-rw-r--r-- | tools/source/memtools/unqidx.cxx | 22 |
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() |* *************************************************************************/ |