summaryrefslogtreecommitdiff
path: root/framework/source/helper/ocomponentenumeration.cxx
diff options
context:
space:
mode:
authorAndreas Schlüns <as@openoffice.org>2001-03-29 12:17:17 +0000
committerAndreas Schlüns <as@openoffice.org>2001-03-29 12:17:17 +0000
commit9eaab44f6e96c1dd1c6fac4b4d9e087e4b2b37cb (patch)
tree17d1e4b5dacda22d361c2286f384675061731f4e /framework/source/helper/ocomponentenumeration.cxx
parent463cdb140b2751047868749fb72ddd7d389369c6 (diff)
no TF_FILTER, split defines.hxx, namespaces, new thread helper, some threadsafe code
Diffstat (limited to 'framework/source/helper/ocomponentenumeration.cxx')
-rw-r--r--framework/source/helper/ocomponentenumeration.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/helper/ocomponentenumeration.cxx b/framework/source/helper/ocomponentenumeration.cxx
index d21f4d0bf1b5..9102c488543e 100644
--- a/framework/source/helper/ocomponentenumeration.cxx
+++ b/framework/source/helper/ocomponentenumeration.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ocomponentenumeration.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: as $ $Date: 2000-09-26 13:01:15 $
+ * last change: $Author: as $ $Date: 2001-03-29 13:17:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -175,7 +175,7 @@ sal_Bool SAL_CALL OComponentEnumeration::hasMoreElements() throw( RuntimeExcepti
// => The last one is getLength() - 1!
// m_nPosition's current value is the position for the next element, which will be return, if user call "nextElement()"
// => We have more elements if current position less then the length of the list!
- return ( m_nPosition < m_seqComponents.getLength() );
+ return ( m_nPosition < (sal_uInt32)(m_seqComponents.getLength()) );
}
//*****************************************************************************************************************