Fix for bug 85548 (Move Transformiix to PRInt32/PRUint32), mostly search and replace. r=Pike, sr=jst.
git-svn-id: svn://10.0.0.236/trunk@97947 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -24,14 +24,14 @@
|
||||
* Marina Mechtcheriakova, mmarina@mindspring.com
|
||||
* -- changed some behavoir to be more compliant with spec
|
||||
*
|
||||
* $Id: NodeSetFunctionCall.cpp,v 1.6 2001-04-12 07:13:08 axel%pike.org Exp $
|
||||
* $Id: NodeSetFunctionCall.cpp,v 1.7 2001-06-26 14:09:10 peterv%netscape.com Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
* NodeSetFunctionCall
|
||||
* A representation of the XPath NodeSet funtions
|
||||
* @author <A HREF="mailto:kvisco@ziplink.net">Keith Visco</a>
|
||||
* @version $Revision: 1.6 $ $Date: 2001-04-12 07:13:08 $
|
||||
* @version $Revision: 1.7 $ $Date: 2001-06-26 14:09:10 $
|
||||
**/
|
||||
|
||||
#include "FunctionLib.h"
|
||||
@@ -87,7 +87,7 @@ NodeSetFunctionCall::NodeSetFunctionCall(short type) : FunctionCall() {
|
||||
ExprResult* NodeSetFunctionCall::evaluate(Node* context, ContextState* cs) {
|
||||
NodeSet* nodeSet = (NodeSet*)cs->getNodeSetStack()->peek();
|
||||
ListIterator* iter = params.iterator();
|
||||
Int32 argc = params.getLength();
|
||||
PRInt32 argc = params.getLength();
|
||||
ExprResult* result = 0;
|
||||
Expr* param = 0;
|
||||
switch ( type ) {
|
||||
@@ -129,7 +129,7 @@ ExprResult* NodeSetFunctionCall::evaluate(Node* context, ContextState* cs) {
|
||||
exprResult->stringValue(lIDList);
|
||||
};
|
||||
lIDList.trim();
|
||||
Int32 start=0,end;
|
||||
PRInt32 start=0,end;
|
||||
MBool hasSpace = MB_FALSE, isSpace;
|
||||
UNICODE_CHAR cc;
|
||||
String thisID;
|
||||
|
||||
Reference in New Issue
Block a user