summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 04:13:32 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 04:13:32 +0000
commitedc777c80e7b8181ebcdcfc3f1ec5eeddfbdd1d1 (patch)
treeaff63458f517436c3d03959e48bc2df9f770fb3b /xmlscript
parent5c6c872335767fb59f94dc691e0c2c1ce6bbcf0f (diff)
INTEGRATION: CWS warnings01 (1.11.4); FILE MERGED
2005/10/27 15:29:54 dbo 1.11.4.1: #i53898# warning-free for CC
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/source/xmllib_imexp/xmllib_import.cxx22
1 files changed, 10 insertions, 12 deletions
diff --git a/xmlscript/source/xmllib_imexp/xmllib_import.cxx b/xmlscript/source/xmllib_imexp/xmllib_import.cxx
index c6487f41ac84..5b296dbd4791 100644
--- a/xmlscript/source/xmllib_imexp/xmllib_import.cxx
+++ b/xmlscript/source/xmllib_imexp/xmllib_import.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xmllib_import.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 16:16:54 $
+ * last change: $Author: hr $ $Date: 2006-06-20 05:13:32 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -73,12 +73,12 @@ Reference< xml::input::XAttributes > LibElementBase::getAttributes()
}
//__________________________________________________________________________________________________
void LibElementBase::ignorableWhitespace(
- OUString const & rWhitespaces )
+ OUString const & /*rWhitespaces*/ )
throw (xml::sax::SAXException, RuntimeException)
{
}
//__________________________________________________________________________________________________
-void LibElementBase::characters( OUString const & rChars )
+void LibElementBase::characters( OUString const & /*rChars*/ )
throw (xml::sax::SAXException, RuntimeException)
{
// not used, all characters ignored
@@ -86,7 +86,7 @@ void LibElementBase::characters( OUString const & rChars )
//__________________________________________________________________________________________________
void LibElementBase::processingInstruction(
- OUString const & rTarget, OUString const & rData )
+ OUString const & /*rTarget*/, OUString const & /*rData*/ )
throw (xml::sax::SAXException, RuntimeException)
{
}
@@ -98,8 +98,8 @@ void LibElementBase::endElement()
}
//__________________________________________________________________________________________________
Reference< xml::input::XElement > LibElementBase::startChildElement(
- sal_Int32 nUid, OUString const & rLocalName,
- Reference< xml::input::XAttributes > const & xAttributes )
+ sal_Int32 /*nUid*/, OUString const & /*rLocalName*/,
+ Reference< xml::input::XAttributes > const & /*xAttributes*/ )
throw (xml::sax::SAXException, RuntimeException)
{
throw xml::sax::SAXException(
@@ -163,13 +163,13 @@ void LibraryImport::endDocument()
}
//__________________________________________________________________________________________________
void LibraryImport::processingInstruction(
- OUString const & rTarget, OUString const & rData )
+ OUString const & /*rTarget*/, OUString const & /*rData*/ )
throw (xml::sax::SAXException, RuntimeException)
{
}
//__________________________________________________________________________________________________
void LibraryImport::setDocumentLocator(
- Reference< xml::sax::XLocator > const & xLocator )
+ Reference< xml::sax::XLocator > const & /*xLocator*/ )
throw (xml::sax::SAXException, RuntimeException)
{
}
@@ -374,6 +374,4 @@ LibDescriptorArray::~LibDescriptorArray()
delete[] mpLibs;
}
-
-
-};
+}