dbertoni 02/01/04 09:16:08
Modified: c/src/XSLT Stylesheet.cpp
Log:
Added default for DOM nodes not officially part of the XPath data model.
Revision Changes Path
1.70 +4 -0 xml-xalan/c/src/XSLT/Stylesheet.cpp
Index: Stylesheet.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/Stylesheet.cpp,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- Stylesheet.cpp 19 Dec 2001 22:08:55 -0000 1.69
+++ Stylesheet.cpp 4 Jan 2002 17:16:08 -0000 1.70
@@ -835,6 +835,10 @@
case XalanNode::DOCUMENT_FRAGMENT_NODE:
return &m_anyPatternList;
break;
+
+ default:
+ return &m_nodePatternList;
+ break;
}
return locateMatchPatternList2(theNode.getNodeName());
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]