diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 09:45:09 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 09:45:09 +0000 |
commit | 7079493a2d469289007b4573aa6aceec9c6f5193 (patch) | |
tree | b4abea1410a63f5bb11d003c85947dbb073bd7e6 /framework/source/xml | |
parent | 40c2529dc4c33c9e95335cbcafde15c4ab85d5da (diff) |
INTEGRATION: CWS sb59 (1.9.46); FILE MERGED
2006/08/10 08:16:27 sb 1.9.46.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'framework/source/xml')
-rw-r--r-- | framework/source/xml/toolboxdocumenthandler.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/source/xml/toolboxdocumenthandler.cxx b/framework/source/xml/toolboxdocumenthandler.cxx index e352c36a46a9..70f40ecfb707 100644 --- a/framework/source/xml/toolboxdocumenthandler.cxx +++ b/framework/source/xml/toolboxdocumenthandler.cxx @@ -4,9 +4,9 @@ * * $RCSfile: toolboxdocumenthandler.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: obo $ $Date: 2006-09-16 14:31:53 $ + * last change: $Author: obo $ $Date: 2006-10-12 10:45:09 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -265,7 +265,7 @@ throw( SAXException, RuntimeException ) { // Check if we have a UI name set in our XML file OUString aUIName; - for ( int n = 0; n < xAttribs->getLength(); n++ ) + for ( sal_Int16 n = 0; n < xAttribs->getLength(); n++ ) { pToolBoxEntry = m_aToolBoxMap.find( xAttribs->getNameByIndex( n ) ); if ( pToolBoxEntry != m_aToolBoxMap.end() ) @@ -334,7 +334,7 @@ throw( SAXException, RuntimeException ) sal_uInt16 nUserDef( 0 ); sal_Bool bVisible( sal_True ); - for ( int n = 0; n < xAttribs->getLength(); n++ ) + for ( sal_Int16 n = 0; n < xAttribs->getLength(); n++ ) { pToolBoxEntry = m_aToolBoxMap.find( xAttribs->getNameByIndex( n ) ); if ( pToolBoxEntry != m_aToolBoxMap.end() ) |