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 2001/01/30 23:01:36 UTC

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

dbertoni    01/01/30 14:01:36

  Modified:    c/src/XSLT ElemLiteralResult.cpp
  Log:
  Make sure we add any static namespaces before running AVTs.
  
  Revision  Changes    Path
  1.27      +2 -2      xml-xalan/c/src/XSLT/ElemLiteralResult.cpp
  
  Index: ElemLiteralResult.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemLiteralResult.cpp,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- ElemLiteralResult.cpp	2001/01/08 18:29:51	1.26
  +++ ElemLiteralResult.cpp	2001/01/30 22:01:36	1.27
  @@ -222,6 +222,8 @@
   
   	ElemUse::execute(executionContext, sourceTree, sourceNode, mode);
   
  +	m_namespacesHandler.outputResultNamespaces(executionContext);
  +
   	if(0 != m_avts.size())
   	{
   		const AVTVectorType::size_type	nAttrs = m_avts.size();
  @@ -263,8 +265,6 @@
   			clear(theStringedValue);
   		}
   	}
  -
  -	m_namespacesHandler.outputResultNamespaces(executionContext);
   
   	executeChildren(executionContext, sourceTree, sourceNode, mode);