diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-07-12 13:16:31 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-07-12 13:16:31 +0000 |
commit | ac5e16efbd2fe5e4c500b38c91974b681e1d3697 (patch) | |
tree | e73d6c9ecdbd8f4957639cae4c89c36772b534c6 | |
parent | 00da9a93761d44f6b3c7f97d1cf04ae8d5c4d522 (diff) |
INTEGRATION: CWS fwk16 (1.6.58); FILE MERGED
2005/07/05 09:05:05 cd 1.6.58.1: #i51442# Fix wrong termination condition in for loop to fill hash map
-rw-r--r-- | framework/source/xml/toolboxdocumenthandler.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/xml/toolboxdocumenthandler.cxx b/framework/source/xml/toolboxdocumenthandler.cxx index 8f5abd4c9985..aa39dff45e21 100644 --- a/framework/source/xml/toolboxdocumenthandler.cxx +++ b/framework/source/xml/toolboxdocumenthandler.cxx @@ -2,9 +2,9 @@ * * $RCSfile: toolboxdocumenthandler.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: obo $ $Date: 2005-03-15 09:35:29 $ + * last change: $Author: kz $ $Date: 2005-07-12 14:16:31 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -194,7 +194,7 @@ OReadToolBoxDocumentHandler::OReadToolBoxDocumentHandler( const Reference< XInde OUString aSeparator( RTL_CONSTASCII_USTRINGPARAM( XMLNS_FILTER_SEPARATOR )); // create hash map - for ( int i = 0; i <= (int)TB_XML_ENTRY_COUNT; i++ ) + for ( int i = 0; i < (int)TB_XML_ENTRY_COUNT; i++ ) { if ( ToolBoxEntries[i].nNamespace == TB_NS_TOOLBAR ) { |