summaryrefslogtreecommitdiff
path: root/hwpfilter/source/list.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-07-18 13:30:11 +0000
committerOliver Bolte <obo@openoffice.org>2007-07-18 13:30:11 +0000
commitedfa1892668d6373279349f2772b07d817e7a32f (patch)
tree2a943e2640dd47af5bb848deca0885350e26c53e /hwpfilter/source/list.hxx
parent6848b07cde0ef376c6f505f550e1960400fc7cd6 (diff)
INTEGRATION: CWS swqbf99 (1.4.42); FILE MERGED
2007/07/12 13:56:01 hr 1.4.42.3: #i10000#: remove garbage character 2007/07/04 11:04:49 ama 1.4.42.2: #i78216#: Unused code removed 2007/06/13 07:31:09 ama 1.4.42.1: Fix #i78216#: Removed unused (buggy) template
Diffstat (limited to 'hwpfilter/source/list.hxx')
-rw-r--r--hwpfilter/source/list.hxx13
1 files changed, 2 insertions, 11 deletions
diff --git a/hwpfilter/source/list.hxx b/hwpfilter/source/list.hxx
index d9171967c26e..30cd9b5d1bc6 100644
--- a/hwpfilter/source/list.hxx
+++ b/hwpfilter/source/list.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: list.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 16:43:06 $
+ * last change: $Author: obo $ $Date: 2007-07-18 14:30:11 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -97,7 +97,6 @@ public:
void set( const int n ); /// set iterator to position n
void reset( ); /// set iterator to first element
- void resetLast(); /// set iterator to last element
// bug-compatible with original LinkedList.h/cpp: Ignore parameter!
void operator++( int ); /// advance iterator by one step (ignore n !!!)
@@ -264,14 +263,6 @@ void LinkedListIterator<T>::reset()
}
template<class T>
-void LinkedListIterator<T>::resetLast()
-{
- ASSERT( mpList != NULL );
- mnPosition = mpList.size() - 1;
- ASSERT( valid() );
-}
-
-template<class T>
void LinkedListIterator<T>::operator++( int )
{
ASSERT( mpList != NULL );