summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
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