diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-07-13 13:11:49 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-07-14 08:19:53 +0200 |
commit | a5b3ededeeb952f12b478ea5035655bb8eeeb1fe (patch) | |
tree | 07efbff8bc2086e58c40ce9f7db2128705f1d02c /tools/inc | |
parent | b6d0d593b65d0b1b8f4611d0eea27a88af68bedf (diff) |
callcatcher: remove unused Table::GetUniqueKey
Diffstat (limited to 'tools/inc')
-rw-r--r-- | tools/inc/tools/table.hxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/inc/tools/table.hxx b/tools/inc/tools/table.hxx index bfb91fbe7dc6..ec0c82cf663b 100644 --- a/tools/inc/tools/table.hxx +++ b/tools/inc/tools/table.hxx @@ -65,7 +65,6 @@ public: { return Container::GetObject( (nPos*2)+1 ); } sal_uIntPtr GetObjectKey( sal_uIntPtr nPos ) const { return (sal_uIntPtr)Container::GetObject( nPos*2 ); } - sal_uIntPtr GetUniqueKey( sal_uIntPtr nStartKey = 1 ) const; sal_uIntPtr SearchKey( sal_uIntPtr nKey, sal_uIntPtr* pPos = NULL ) const; void* Seek( sal_uIntPtr nKey ); @@ -102,7 +101,6 @@ public: \ using Table::Count; \ using Table::GetCurKey; \ using Table::GetObjectKey; \ - using Table::GetUniqueKey; \ using Table::SearchKey; \ using Table::IsKeyValid; \ \ |