summaryrefslogtreecommitdiff
path: root/hwpfilter/source
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-07-14 10:43:42 +0000
committerKurt Zenker <kz@openoffice.org>2005-07-14 10:43:42 +0000
commit6b00fb3462bff03fbe3e2ceb6956749edd08e403 (patch)
tree3d5df8cb848651a7ac4f85541e0845f93f12f400 /hwpfilter/source
parentcd3080bd8884d9b1454d69e481b489e938ce512a (diff)
INTEGRATION: CWS dvoqbfix4 (1.2.10); FILE MERGED
2005/05/27 16:44:57 dvo 1.2.10.1: #i49322# remove warning ("no return statement in function returning non-void") Issue number: Submitted by: Reviewed by:
Diffstat (limited to 'hwpfilter/source')
-rw-r--r--hwpfilter/source/list.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/hwpfilter/source/list.hxx b/hwpfilter/source/list.hxx
index 0ef421f90f66..fe15313347d6 100644
--- a/hwpfilter/source/list.hxx
+++ b/hwpfilter/source/list.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: list.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: kz $ $Date: 2004-07-30 15:46:29 $
+ * last change: $Author: kz $ $Date: 2005-07-14 11:43:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -120,7 +120,7 @@ public:
~LinkedListIterator();
T* current(); /// return current element, or NULL if invalid
- const int set( const int n ); /// set iterator to position n
+ void set( const int n ); /// set iterator to position n
void reset( ); /// set iterator to first element
void resetLast(); /// set iterator to last element
@@ -273,7 +273,7 @@ T* LinkedListIterator<T>::current()
}
template<class T>
-const int LinkedListIterator<T>::set( const int nIndex )
+void LinkedListIterator<T>::set( const int nIndex )
{
ASSERT( mpList != NULL );
mnPosition = nIndex;