diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-06-27 20:43:38 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-06-28 11:08:49 +0200 |
commit | 1b72dd9e1c3b981cb1863c3b2d0680045bf3bd07 (patch) | |
tree | 68450287e5fb5de76e42dcf92b6c469f5191da5a /svtools | |
parent | 0f11f30ea96fcec8d7c648089fc223a6fbed6aef (diff) |
Remove some unused locals
Change-Id: I91282512f15122d0d7187fea7f6ab5a98933a07f
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/treelist.cxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/svtools/source/contnr/treelist.cxx b/svtools/source/contnr/treelist.cxx index 5008f40cd7ae..42bb3e40b75c 100644 --- a/svtools/source/contnr/treelist.cxx +++ b/svtools/source/contnr/treelist.cxx @@ -1381,18 +1381,6 @@ void SvTreeList::InvalidateEntry( SvListEntry* pEntry ) Broadcast( LISTACTION_INVALIDATE_ENTRY, pEntry ); } -void lcl_CheckList( SvTreeEntryList* pList ) -{ - SvListEntry* pEntry = (SvListEntry*)(pList->First()); - sal_uLong nPos = 0; - while ( pEntry ) - { - DBG_ASSERT(pEntry->GetChildListPos()==nPos,"Wrong ListPos"); - pEntry = (SvListEntry*)(pList->Next()); - nPos++; - } -} - SvListEntry* SvTreeList::GetRootLevelParent( SvListEntry* pEntry ) const { DBG_ASSERT(pEntry,"GetRootLevelParent:No Entry"); |