dbertoni 01/06/18 15:15:29
Modified: c/samples/UseStylesheetParam UseStylesheetParam.cpp
Log:
Added explicit XalanDOMString constructors.
Revision Changes Path
1.14 +3 -1 xml-xalan/c/samples/UseStylesheetParam/UseStylesheetParam.cpp
Index: UseStylesheetParam.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/samples/UseStylesheetParam/UseStylesheetParam.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- UseStylesheetParam.cpp 2001/06/07 18:00:36 1.13
+++ UseStylesheetParam.cpp 2001/06/18 22:15:26 1.14
@@ -51,7 +51,9 @@
// Set the stylesheet parameter name and
// expression (a string expression).
- theXalanTransformer.setStylesheetParam(argv[1], argv[2]);
+ theXalanTransformer.setStylesheetParam(
+ XalanDOMString(argv[1]),
+ XalanDOMString(argv[2]));
// Our input files...The assumption is that the executable
will be run
// from same directory as the input files.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]