diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-07-12 13:16:02 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-07-12 13:16:02 +0000 |
commit | 970bff8044d85625e098540126cebd4b6f933f54 (patch) | |
tree | fc1a7c9dba82644e5d70406eb66261ec9a9d4715 /framework | |
parent | 9513f8286ad5e8502b7826780d2af2ca69a6a112 (diff) |
INTEGRATION: CWS fwk16 (1.2.288); FILE MERGED
2005/07/05 09:05:03 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/eventsdocumenthandler.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/xml/eventsdocumenthandler.cxx b/framework/source/xml/eventsdocumenthandler.cxx index 54d5d47a2017..f87ea6410a64 100644 --- a/framework/source/xml/eventsdocumenthandler.cxx +++ b/framework/source/xml/eventsdocumenthandler.cxx @@ -2,9 +2,9 @@ * * $RCSfile: eventsdocumenthandler.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kz $ $Date: 2004-02-25 17:54:09 $ + * last change: $Author: kz $ $Date: 2005-07-12 14:16:02 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -170,7 +170,7 @@ OReadEventsDocumentHandler::OReadEventsDocumentHandler( EventsConfig& aItems ) : OUString aSeparator( RTL_CONSTASCII_USTRINGPARAM( XMLNS_FILTER_SEPARATOR )); // create hash map - for ( int i = 0; i <= (int)EV_XML_ENTRY_COUNT; i++ ) + for ( int i = 0; i < (int)EV_XML_ENTRY_COUNT; i++ ) { if ( EventEntries[i].nNamespace == EV_NS_EVENT ) { |