summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-07-12 13:16:16 +0000
committerKurt Zenker <kz@openoffice.org>2005-07-12 13:16:16 +0000
commit00da9a93761d44f6b3c7f97d1cf04ae8d5c4d522 (patch)
tree487820ec4cac2f54b21c2922f9d2858314424a18 /framework
parent970bff8044d85625e098540126cebd4b6f933f54 (diff)
INTEGRATION: CWS fwk16 (1.2.288); FILE MERGED
2005/07/05 09:05:04 cd 1.2.288.1: #i51442# Fix wrong termination condition in for loop to fill hash map
Diffstat (limited to 'framework')
-rw-r--r--framework/source/xml/imagesdocumenthandler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/xml/imagesdocumenthandler.cxx b/framework/source/xml/imagesdocumenthandler.cxx
index e8ac6307a8e9..68e910a10d02 100644
--- a/framework/source/xml/imagesdocumenthandler.cxx
+++ b/framework/source/xml/imagesdocumenthandler.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: imagesdocumenthandler.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: kz $ $Date: 2004-02-25 17:54:31 $
+ * last change: $Author: kz $ $Date: 2005-07-12 14:16:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -183,7 +183,7 @@ OReadImagesDocumentHandler::OReadImagesDocumentHandler( ImageListsDescriptor& aI
m_nHashMaskModeColor = OUString( RTL_CONSTASCII_USTRINGPARAM( ATTRIBUTE_MASKMODE_COLOR )).hashCode();
// create hash map to speed up lookup
- for ( int i = 0; i <= (int)IMG_XML_ENTRY_COUNT; i++ )
+ for ( int i = 0; i < (int)IMG_XML_ENTRY_COUNT; i++ )
{
OUStringBuffer temp( 20 );