summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/xml/xmlconti.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-02-27 11:49:51 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-02-27 11:49:51 +0000
commit395d764ce72a7622528d0d7edbfdd334497ba963 (patch)
treec0b0b8d67df37d04b927e16083c4381f4d517e42 /sc/source/filter/xml/xmlconti.cxx
parentINTEGRATION: CWS calcwarnings (1.21.54); FILE MERGED (diff)
downloadcore-395d764ce72a7622528d0d7edbfdd334497ba963.tar.gz
core-395d764ce72a7622528d0d7edbfdd334497ba963.zip
INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED
2006/12/13 10:30:17 nn 1.8.110.2: #i69284# warning-free: filter/xml, unxlngi6 2006/12/01 13:29:18 nn 1.8.110.1: #i69284# warning-free: filter/xml, wntmsci10
Diffstat (limited to 'sc/source/filter/xml/xmlconti.cxx')
-rw-r--r--sc/source/filter/xml/xmlconti.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/filter/xml/xmlconti.cxx b/sc/source/filter/xml/xmlconti.cxx
index ef19ace14163..faac3b448744 100644
--- a/sc/source/filter/xml/xmlconti.cxx
+++ b/sc/source/filter/xml/xmlconti.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xmlconti.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: kz $ $Date: 2006-07-21 12:51:48 $
+ * last change: $Author: vg $ $Date: 2007-02-27 12:49:51 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -62,7 +62,7 @@ ScXMLContentContext::ScXMLContentContext( ScXMLImport& rImport,
USHORT nPrfx,
const ::rtl::OUString& rLName,
const ::com::sun::star::uno::Reference<
- ::com::sun::star::xml::sax::XAttributeList>& xAttrList,
+ ::com::sun::star::xml::sax::XAttributeList>& /* xAttrList */,
rtl::OUStringBuffer& sTempValue) :
SvXMLImportContext( rImport, nPrfx, rLName ),
sOUText(),
@@ -88,12 +88,12 @@ SvXMLImportContext *ScXMLContentContext::CreateChildContext( USHORT nPrefix,
for( sal_Int16 i=0; i < nAttrCount; ++i )
{
const rtl::OUString& sAttrName(xAttrList->getNameByIndex( i ));
- const rtl::OUString& sValue(xAttrList->getValueByIndex( i ));
+ const rtl::OUString& sAttrValue(xAttrList->getValueByIndex( i ));
rtl::OUString aLocalName;
USHORT nPrfx = GetScImport().GetNamespaceMap().GetKeyByAttrName(
sAttrName, &aLocalName );
if ((nPrfx == XML_NAMESPACE_TEXT) && IsXMLToken(aLocalName, XML_C))
- nRepeat = sValue.toInt32();
+ nRepeat = sAttrValue.toInt32();
}
if (nRepeat)
for (sal_Int32 j = 0; j < nRepeat; ++j)