diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:12:14 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:12:14 +0000 |
commit | a0129cc1d8920b8d2f3141a655b681fe15d65ad6 (patch) | |
tree | 4e760f28735029474a073916b19806ac2ffa1566 | |
parent | 20c93cc2e4b7aadb2dc9f3a03f6a447955edf53c (diff) |
INTEGRATION: CWS warnings01 (1.34.4); FILE MERGED
2005/10/27 15:29:52 dbo 1.34.4.1: #i53898# warning-free for CC
-rw-r--r-- | xmlscript/source/xmldlg_imexp/xmldlg_export.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx index 8e7fe4df97c9..75dde3166706 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx @@ -4,9 +4,9 @@ * * $RCSfile: xmldlg_export.cxx,v $ * - * $Revision: 1.34 $ + * $Revision: 1.35 $ * - * last change: $Author: rt $ $Date: 2005-09-09 16:13:52 $ + * last change: $Author: hr $ $Date: 2006-06-20 05:12:14 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -563,7 +563,7 @@ Reference< xml::sax::XAttributeList > Style::createElement() //__________________________________________________________________________________________________ void ElementDescriptor::addNumberFormatAttr( Reference< beans::XPropertySet > const & xFormatProperties, - OUString const & rAttrName ) + OUString const & /*rAttrName*/ ) { Reference< beans::XPropertyState > xState( xFormatProperties, UNO_QUERY ); OUString sFormat; @@ -1523,9 +1523,9 @@ void SAL_CALL exportDialogModel( xOut->startElement( aBBoardName, Reference< xml::sax::XAttributeList >() ); // export control elements - for ( size_t nPos = 0; nPos < all_elements.size(); ++nPos ) + for ( std::size_t n = 0; n < all_elements.size(); ++n ) { - ElementDescriptor * pElem = static_cast< ElementDescriptor * >( all_elements[ nPos ].get() ); + ElementDescriptor * pElem = static_cast< ElementDescriptor * >( all_elements[ n ].get() ); pElem->dump( xOut.get() ); } |