summaryrefslogtreecommitdiff
path: root/tools/source/memtools
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-07-13 13:11:49 +0200
committerThomas Arnhold <thomas@arnhold.org>2011-07-14 08:19:53 +0200
commita5b3ededeeb952f12b478ea5035655bb8eeeb1fe (patch)
tree07efbff8bc2086e58c40ce9f7db2128705f1d02c /tools/source/memtools
parentb6d0d593b65d0b1b8f4611d0eea27a88af68bedf (diff)
callcatcher: remove unused Table::GetUniqueKey
Diffstat (limited to 'tools/source/memtools')
-rw-r--r--tools/source/memtools/table.cxx39
1 files changed, 0 insertions, 39 deletions
diff --git a/tools/source/memtools/table.cxx b/tools/source/memtools/table.cxx
index 75119ba6f142..e9c2239b1c82 100644
--- a/tools/source/memtools/table.cxx
+++ b/tools/source/memtools/table.cxx
@@ -257,45 +257,6 @@ sal_Bool Table::IsKeyValid( sal_uIntPtr nKey ) const
// -----------------------------------------------------------------------
-sal_uIntPtr Table::GetUniqueKey( sal_uIntPtr nStartKey ) const
-{
- DBG_ASSERT( (nStartKey > 1) && (nStartKey < 0xFFFFFFFF),
- "Table::GetUniqueKey() - nStartKey == 0 or nStartKey >= 0xFFFFFFFF" );
-
- if ( !nCount )
- return nStartKey;
-
- sal_uIntPtr nLastKey = (sal_uIntPtr)Container::GetObject( (nCount*2)-2 );
- if ( nLastKey < nStartKey )
- return nStartKey;
- else
- {
- if ( nLastKey < 0xFFFFFFFE )
- return nLastKey+1;
- else
- {
- sal_uIntPtr nPos;
- sal_uIntPtr nTempPos = ImplGetIndex( nStartKey, &nPos );
- if ( nTempPos != TABLE_ENTRY_NOTFOUND )
- nPos = nTempPos;
- nLastKey = (sal_uIntPtr)Container::GetObject( nPos );
- if ( nStartKey < nLastKey )
- return nStartKey;
- while ( nLastKey < 0xFFFFFFFE )
- {
- nPos += 2;
- nLastKey++;
- if ( nLastKey != (sal_uIntPtr)Container::GetObject( nPos ) )
- return nLastKey;
- }
- }
- }
-
- return 0;
-}
-
-// -----------------------------------------------------------------------
-
sal_uIntPtr Table::SearchKey( sal_uIntPtr nKey, sal_uIntPtr* pPos ) const
{
*pPos = 0;