summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-03-05 13:40:48 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-03-05 13:42:58 +0000
commit273960e01f814656e12c960599fc49b5a4c4416e (patch)
treeec324ea3c67f30f0f8d2701fd3147dbcc3d3c7c2 /sot
parentb5bc28fbb20d7432f243ce2808d8a535f02b0b5f (diff)
callcatcher: update list
Diffstat (limited to 'sot')
-rw-r--r--sot/source/sdstor/stgavl.cxx5
-rw-r--r--sot/source/sdstor/stgavl.hxx1
-rw-r--r--sot/source/sdstor/stgdir.hxx1
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