dbertoni 2002/08/25 09:05:37
Modified: c/src/XalanTransformer XalanCompiledStylesheetDefault.cpp
XalanCompiledStylesheetDefault.hpp
XalanTransformer.cpp
Log:
Removed unused parameter. Pass ErrorHandler and EntityResolver when
compiling stylesheets.
Revision Changes Path
1.4 +1 -3
xml-xalan/c/src/XalanTransformer/XalanCompiledStylesheetDefault.cpp
Index: XalanCompiledStylesheetDefault.cpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/XalanTransformer/XalanCompiledStylesheetDefault.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- XalanCompiledStylesheetDefault.cpp 14 Nov 2001 22:17:48 -0000
1.3
+++ XalanCompiledStylesheetDefault.cpp 25 Aug 2002 16:05:37 -0000
1.4
@@ -2,7 +2,7 @@
* The Apache Software License, Version 1.1
*
*
- * Copyright (c) 2001 The Apache Software Foundation. All rights
+ * Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -124,7 +124,6 @@
XalanCompiledStylesheetDefault::XalanCompiledStylesheetDefault(
const XSLTInputSource&
theStylesheetSource,
- XSLTProcessorEnvSupportDefault&
theXSLTProcessorEnvSupport,
XSLTEngineImpl&
theProcessor,
ErrorHandler*
theErrorHandler,
EntityResolver*
theEntityResolver):
@@ -132,7 +131,6 @@
m_stylesheetXPathFactory(),
m_stylesheetConstructionContext(
theProcessor,
- theXSLTProcessorEnvSupport,
m_stylesheetXPathFactory),
m_stylesheetRoot(compileStylesheet(
theStylesheetSource,
1.3 +0 -1
xml-xalan/c/src/XalanTransformer/XalanCompiledStylesheetDefault.hpp
Index: XalanCompiledStylesheetDefault.hpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/XalanTransformer/XalanCompiledStylesheetDefault.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- XalanCompiledStylesheetDefault.hpp 7 Nov 2001 04:04:27 -0000
1.2
+++ XalanCompiledStylesheetDefault.hpp 25 Aug 2002 16:05:37 -0000
1.3
@@ -92,7 +92,6 @@
XalanCompiledStylesheetDefault(
const XSLTInputSource&
theStylesheetSource,
- XSLTProcessorEnvSupportDefault&
theXSLTProcessorEnvSupport,
XSLTEngineImpl&
theProcessor,
ErrorHandler*
theErrorHandler = 0,
EntityResolver*
theEntityResolver = 0);
1.59 +3 -2 xml-xalan/c/src/XalanTransformer/XalanTransformer.cpp
Index: XalanTransformer.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XalanTransformer/XalanTransformer.cpp,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- XalanTransformer.cpp 15 Aug 2002 04:40:51 -0000 1.58
+++ XalanTransformer.cpp 25 Aug 2002 16:05:37 -0000 1.59
@@ -482,8 +482,9 @@
theCompiledStylesheet =
new XalanCompiledStylesheetDefault(
theStylesheetSource,
- theXSLTProcessorEnvSupport,
- theProcessor);
+ theProcessor,
+ m_errorHandler,
+ m_entityResolver);
// Store it in a vector.
m_compiledStylesheets.push_back(theCompiledStylesheet);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]