diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:22:45 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:22:45 +0000 |
commit | 3eaa2ab62425973b4d3e14d6b7a215cf13e5bf42 (patch) | |
tree | d4118b54f56377ed6847ea18aaeaf1b4a6e67d62 | |
parent | 2da6012374e1391a9581102663a13185cc82ac61 (diff) |
INTEGRATION: CWS warnings01 (1.4.34); FILE MERGED
2005/11/16 22:47:14 pl 1.4.34.2: #i55991# removed warnings
2005/11/03 17:47:01 cl 1.4.34.1: warning free code changes for unxlngi6
-rw-r--r-- | xmloff/source/script/XMLScriptContextFactory.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xmloff/source/script/XMLScriptContextFactory.cxx b/xmloff/source/script/XMLScriptContextFactory.cxx index 5a269aaa70ea..0dd28ef3b40d 100644 --- a/xmloff/source/script/XMLScriptContextFactory.cxx +++ b/xmloff/source/script/XMLScriptContextFactory.cxx @@ -4,9 +4,9 @@ * * $RCSfile: XMLScriptContextFactory.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-09 14:19:34 $ + * last change: $Author: hr $ $Date: 2006-06-19 18:22:45 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -73,8 +73,8 @@ using ::com::sun::star::uno::Any; XMLScriptContextFactory::XMLScriptContextFactory() : sEventType(RTL_CONSTASCII_USTRINGPARAM("EventType")), - sURL(RTL_CONSTASCII_USTRINGPARAM("Script")), - sScript(RTL_CONSTASCII_USTRINGPARAM("Script")) + sScript(RTL_CONSTASCII_USTRINGPARAM("Script")), + sURL(RTL_CONSTASCII_USTRINGPARAM("Script")) { } @@ -84,12 +84,12 @@ XMLScriptContextFactory::~XMLScriptContextFactory() SvXMLImportContext * XMLScriptContextFactory::CreateContext (SvXMLImport & rImport, - sal_uInt16 nPrefix, + sal_uInt16 p_nPrefix, const OUString & rLocalName, const Reference<XAttributeList> & xAttrList, XMLEventsImportContext * rEvents, const OUString & rApiEventName, - const OUString & rApiLanguage) + const OUString & /*rApiLanguage*/) { OUString sURLVal; @@ -123,6 +123,6 @@ SvXMLImportContext * XMLScriptContextFactory::CreateContext rEvents->AddEventValues(rApiEventName, aValues); // return dummy context - return new SvXMLImportContext(rImport, nPrefix, rLocalName); + return new SvXMLImportContext(rImport, p_nPrefix, rLocalName); } |