not part of build, simple fix to get |NodeType()| right, have comment nodes in standalone, warning fix in nsNodeSet.h

This commit is contained in:
axel%pike.org 2005-11-02 07:35:53 +00:00
Родитель ded0be95c4
Коммит 3b512d1fad
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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 <A HREF="mailto:kvisco@ziplink.net">Keith Visco</A>
* @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);