You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2002/03/13 05:34:58 UTC

cvs commit: xml-xalan/c/src/XSLT XSLTEngineImpl.cpp

dbertoni    02/03/12 20:34:58

  Modified:    c/src/XSLT XSLTEngineImpl.cpp
  Log:
  Use local name for constructing QName.
  
  Revision  Changes    Path
  1.135     +2 -2      xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp
  
  Index: XSLTEngineImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp,v
  retrieving revision 1.134
  retrieving revision 1.135
  diff -u -r1.134 -r1.135
  --- XSLTEngineImpl.cpp	12 Mar 2002 05:41:04 -0000	1.134
  +++ XSLTEngineImpl.cpp	13 Mar 2002 04:34:57 -0000	1.135
  @@ -2541,7 +2541,7 @@
   			if(equals(prefix, DOMServices::s_XMLString))
   			{
   				fResult =
  -					m_stylesheetRoot->isCDATASectionElementName(XalanQNameByReference(DOMServices::s_XMLNamespaceURI, elementName));
  +					m_stylesheetRoot->isCDATASectionElementName(XalanQNameByReference(DOMServices::s_XMLNamespaceURI, elemLocalName));
   			}
   			else
   			{
  @@ -2555,7 +2555,7 @@
   				else
   				{
   					fResult =
  -						m_stylesheetRoot->isCDATASectionElementName(XalanQNameByReference(*elemNS, elementName));
  +						m_stylesheetRoot->isCDATASectionElementName(XalanQNameByReference(*elemNS, elemLocalName));
   				}
   			}
   		}
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org