summaryrefslogtreecommitdiff
path: root/svl/inc
diff options
context:
space:
mode:
authorElton Chung <elton@layerjet.com>2012-02-19 14:58:41 +0800
committerIvan Timofeev <timofeev.i.s@gmail.com>2012-02-19 14:11:26 +0400
commitcae6ca15d6327a7ff0471c7b15dbefcdc86b0e8c (patch)
tree9ec500783330d55304e176efc660b1998e3cf0ce /svl/inc
parentcdf0c78990a149a5deab8f9e68512a8646ca1855 (diff)
Remove unused code
Diffstat (limited to 'svl/inc')
-rw-r--r--svl/inc/svl/listeneriter.hxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/svl/inc/svl/listeneriter.hxx b/svl/inc/svl/listeneriter.hxx
index 0dcdec811250..5959bb12499e 100644
--- a/svl/inc/svl/listeneriter.hxx
+++ b/svl/inc/svl/listeneriter.hxx
@@ -48,7 +48,6 @@ class SVL_DLLPUBLIC SvtListenerIter
// at the same time.
static SvtListenerIter *pListenerIters;
SvtListenerIter *pNxtIter;
- TypeId aSrchId; // fuer First/Next - suche diesen Type
SVL_DLLPRIVATE static void RemoveListener( SvtListenerBase& rDel,
SvtListenerBase* pNext );
@@ -61,18 +60,12 @@ public:
SvtBroadcaster& GetBroadcaster() { return rRoot; }
SvtListener* GoNext(); // to the next
- SvtListener* GoPrev(); // to the previous
SvtListener* GoStart(); // to the start of the list
- SvtListener* GoEnd(); // to the end of the list
- SvtListener* GoRoot(); // to the root
SvtListener* GetCurr() const; // returns the current
int IsChanged() const { return pDelNext != pAkt; }
-
- SvtListener* First( TypeId nType );
- SvtListener* Next();
};