diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-03-05 13:40:48 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-03-05 13:42:58 +0000 |
commit | 273960e01f814656e12c960599fc49b5a4c4416e (patch) | |
tree | ec324ea3c67f30f0f8d2701fd3147dbcc3d3c7c2 /sot | |
parent | b5bc28fbb20d7432f243ce2808d8a535f02b0b5f (diff) |
callcatcher: update list
Diffstat (limited to 'sot')
-rw-r--r-- | sot/source/sdstor/stgavl.cxx | 5 | ||||
-rw-r--r-- | sot/source/sdstor/stgavl.hxx | 1 | ||||
-rw-r--r-- | sot/source/sdstor/stgdir.hxx | 1 |
3 files changed, 0 insertions, 7 deletions
diff --git a/sot/source/sdstor/stgavl.cxx b/sot/source/sdstor/stgavl.cxx index 45572126210a..554236ad21e6 100644 --- a/sot/source/sdstor/stgavl.cxx +++ b/sot/source/sdstor/stgavl.cxx @@ -406,9 +406,4 @@ StgAvlNode* StgAvlIterator::Next() return Find( ++nCur ); } -StgAvlNode* StgAvlIterator::Prev() -{ - return Find( --nCur ); -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sot/source/sdstor/stgavl.hxx b/sot/source/sdstor/stgavl.hxx index 23e9d272530a..cadc67642179 100644 --- a/sot/source/sdstor/stgavl.hxx +++ b/sot/source/sdstor/stgavl.hxx @@ -71,7 +71,6 @@ public: StgAvlIterator( StgAvlNode* ); StgAvlNode* First(); StgAvlNode* Next(); - StgAvlNode* Prev(); }; #endif diff --git a/sot/source/sdstor/stgdir.hxx b/sot/source/sdstor/stgdir.hxx index 8aaa359071f0..8a4cf68db903 100644 --- a/sot/source/sdstor/stgdir.hxx +++ b/sot/source/sdstor/stgdir.hxx @@ -125,7 +125,6 @@ public: StgIterator( StgDirEntry& rStg ) : StgAvlIterator( rStg.pDown ) {} StgDirEntry* First() { return (StgDirEntry*) StgAvlIterator::First(); } StgDirEntry* Next() { return (StgDirEntry*) StgAvlIterator::Next(); } - StgDirEntry* Prev() { return (StgDirEntry*) StgAvlIterator::Prev(); } }; #endif |