From 3b512d1fad47b74b2c2fe278a583883ee4bc7ac0 Mon Sep 17 00:00:00 2001 From: "axel%pike.org" Date: Wed, 2 Nov 2005 07:35:53 +0000 Subject: [PATCH] not part of build, simple fix to get |NodeType()| right, have comment nodes in standalone, warning fix in nsNodeSet.h --- content/xslt/src/xpath/txExprParser.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/xslt/src/xpath/txExprParser.cpp b/content/xslt/src/xpath/txExprParser.cpp index 630e8c61aeab..42f8f0510c52 100644 --- a/content/xslt/src/xpath/txExprParser.cpp +++ b/content/xslt/src/xpath/txExprParser.cpp @@ -30,7 +30,7 @@ * -- fixed bug in ::parsePredicates, * made sure we continue looking for more predicates. * - * $Id: txExprParser.cpp,v 1.8 2005/11/02 07:33:32 kvisco%ziplink.net Exp $ + * $Id: txExprParser.cpp,v 1.9 2005/11/02 07:33:33 axel%pike.org Exp $ */ /** @@ -38,7 +38,7 @@ * This class is used to parse XSL Expressions * @author Keith Visco * @see ExprLexer - * @version $Revision: 1.8 $ $Date: 2005/11/02 07:33:32 $ + * @version $Revision: 1.9 $ $Date: 2005/11/02 07:33:33 $ **/ #include "ExprParser.h" @@ -588,7 +588,7 @@ LocationStep* ExprParser::createLocationStep(ExprLexer& lexer) { } // NodeType else { - NodeExpr* nodeExpr = createNodeExpr(lexer); + nodeExpr = createNodeExpr(lexer); } lstep->setNodeExpr(nodeExpr);